import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { BankInfoAccountType } from "./BankInfoAccountType"; import { BankInfoEmployee } from "./BankInfoEmployee"; import { RemoteData } from "./RemoteData"; export declare const BankInfo: core.serialization.ObjectSchema; export declare namespace BankInfo { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; employee?: BankInfoEmployee.Raw | null; account_number?: string | null; routing_number?: string | null; bank_name?: string | null; account_type?: BankInfoAccountType.Raw | null; remote_created_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }