import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AccountRequestAccountType } from "./AccountRequestAccountType"; import { AccountRequestClassification } from "./AccountRequestClassification"; import { AccountRequestCompany } from "./AccountRequestCompany"; import { AccountRequestCurrency } from "./AccountRequestCurrency"; import { AccountRequestStatus } from "./AccountRequestStatus"; export declare const AccountRequest: core.serialization.ObjectSchema; export declare namespace AccountRequest { interface Raw { name?: string | null; description?: string | null; classification?: AccountRequestClassification.Raw | null; type?: string | null; account_type?: AccountRequestAccountType.Raw | null; status?: AccountRequestStatus.Raw | null; current_balance?: number | null; currency?: AccountRequestCurrency.Raw | null; account_number?: string | null; parent_account?: string | null; company?: AccountRequestCompany.Raw | null; integration_params?: Record | null; linked_account_params?: Record | null; } }