export interface LinkedAccountCompleteAuthRequestDto {
    auth_id?: string;
    auth_reference?: string;
    code?: string;
    state?: number;
    type: LinkedAccountCompleteAuthRequestDto.TypeEnum;
}
export declare namespace LinkedAccountCompleteAuthRequestDto {
    const validTypeEnum: readonly ["PLAID", "TRUELAYER", "EGIRO"];
    type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN';
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=linkedAccountCompleteAuthRequestDto.d.ts.map