import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { IncomeStatementCompany } from "./IncomeStatementCompany"; import { IncomeStatementCurrency } from "./IncomeStatementCurrency"; import { RemoteData } from "./RemoteData"; import { ReportItem } from "./ReportItem"; export declare const IncomeStatement: core.serialization.ObjectSchema; export declare namespace IncomeStatement { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; currency?: IncomeStatementCurrency.Raw | null; company?: IncomeStatementCompany.Raw | null; start_period?: string | null; end_period?: string | null; income?: ReportItem.Raw[] | null; cost_of_sales?: ReportItem.Raw[] | null; gross_profit?: number | null; operating_expenses?: ReportItem.Raw[] | null; net_operating_income?: number | null; non_operating_expenses?: ReportItem.Raw[] | null; net_income?: number | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }