export declare class WorkRecordRapidSearchModel { id: string; workRecordId: string; dealNumber: string; thirdPartyClientName: string; miloCode: string; amount: number; currencyCode: string; titles: { vo: string; fr?: string; en?: string; de?: string; }; docType: string; /** * Returns the title for the language. If the language is undefined or unsupported, returns the VO title. * @param language */ getTitle(language?: string): string; }