import { CuentaBancaria } from 'src/models';

export interface CuentaBancariaState {
  loading: boolean;
  list: CuentaBancaria[];
}
