import { FetchStateByTimeframe } from '../../commonStateTypes/coaBalance/coaBalance'; import { COABalancesFilter } from '../../commonStateTypes/coaBalance/coaBalancesFilter'; import { FetchStateAndError } from '../../commonStateTypes/common'; import { AccountState } from '../../entity/account/accountState'; import { AccountGroupState } from '../../entity/accountGroup/accountGroupState'; import { SectionAccountsViewState } from '../../entity/sectionAccountsView/sectionAccountsViewState'; import { CashFlowReport } from './cashFlowSelectorTypes'; import { CashFlowState } from './cashFlowState'; export declare function getCashFlow(filter: COABalancesFilter, accountState: AccountState, accountGroupState: AccountGroupState, sectionsState: SectionAccountsViewState, cashFlowState: CashFlowState): CashFlowReport; export declare const getCashFlowReportFetchState: (cashFlowState: CashFlowState) => { fetchStateByTimeframe: FetchStateByTimeframe; reducedAllFetchState: FetchStateAndError; reducedAnyFetchState: FetchStateAndError; };