import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { CashFlowStatementCompany } from "./CashFlowStatementCompany"; import { CashFlowStatementCurrency } from "./CashFlowStatementCurrency"; import { RemoteData } from "./RemoteData"; import { ReportItem } from "./ReportItem"; export declare const CashFlowStatement: core.serialization.ObjectSchema; export declare namespace CashFlowStatement { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; currency?: CashFlowStatementCurrency.Raw | null; company?: CashFlowStatementCompany.Raw | null; start_period?: string | null; end_period?: string | null; cash_at_beginning_of_period?: number | null; cash_at_end_of_period?: number | null; operating_activities?: ReportItem.Raw[] | null; investing_activities?: ReportItem.Raw[] | null; financing_activities?: ReportItem.Raw[] | null; remote_generated_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }