import { TimeStamped } from '../django'; export declare class LenderPortfolio implements TimeStamped { id: string; created: Date; modified: Date; fullName: string; shortName: string; identity: string; walletId: string; startDate: Date; endDate: Date; balance: number; constructor(data?: string | LenderPortfolio | DjangoLenderPortfolio); } export declare function parseLenderPortfolio(data?: string | LenderPortfolio | DjangoLenderPortfolio): LenderPortfolio; export interface DjangoLenderPortfolio { id?: string; created?: string; modified?: string; full_name?: string; short_name?: string; identity?: string; wallet_id?: string; start_date?: string; end_date?: string; balance?: number; }