import { IdentityDto } from './identity.dto'; import { EntityDto } from './../entity/entity.dto'; export declare class FinancialInstrumentDto { identity: IdentityDto; type: string; rank: number; currency: string; entity: EntityDto; status: string; accountNumber: string; country: string; routingNumber: string; constructor(d?: FinancialInstrumentDto); }