import { OauthReqApiDto } from './oauthReqApiDto';
import { PrefilledFormData } from './prefilledFormData';
import { ScaleConnectReqApiDto } from './scaleConnectReqApiDto';
export interface AccountLinkResApiDto {
    account_id?: string;
    created_at?: string;
    expire_at?: string;
    id?: string;
    identifier?: string;
    metadata?: {
        [key: string]: string;
    };
    mode?: string;
    oauth2?: OauthReqApiDto;
    prefilled_formdata?: Array<PrefilledFormData>;
    scale_connect: ScaleConnectReqApiDto;
    url?: string;
}
export declare namespace AccountLinkResApiDto {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=accountLinkResApiDto.d.ts.map