import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { BankFeedAccountAccountType } from "./BankFeedAccountAccountType"; import { BankFeedAccountCurrency } from "./BankFeedAccountCurrency"; import { BankFeedAccountFeedStatus } from "./BankFeedAccountFeedStatus"; import { RemoteData } from "./RemoteData"; export declare const BankFeedAccount: core.serialization.ObjectSchema; export declare namespace BankFeedAccount { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; source_account_id?: string | null; target_account_id?: string | null; source_account_name?: string | null; source_account_number?: string | null; target_account_name?: string | null; currency?: BankFeedAccountCurrency.Raw | null; feed_status?: BankFeedAccountFeedStatus.Raw | null; feed_start_date?: string | null; source_account_balance?: number | null; account_type?: BankFeedAccountAccountType.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }