import { CaptacionState } from './CaptacionState';

export default function (): CaptacionState {
  return {
    token: null,
    data: null,
    loading: false,
    bankAccounts: [],
    documentFilter: {
      tags: ['all'],
      types: [-1],
    },
    notifications: {
      data: [],
      loading: false,
    },
    stats: [],
    loadingStats: false,
    loadingItems: false,
  };
}
