export interface Document { creationDate?: string; encodedKey?: string; fileName?: string; fileSize?: number; id: number; lastModifiedDate?: string; location?: string; name: string; notes?: string; ownerKey?: string; ownerType?: DocumentOwnerTypeEnum; type: string; } export declare const DocumentOwnerTypeEnum: { readonly Client: "CLIENT"; readonly Group: "GROUP"; readonly LoanProduct: "LOAN_PRODUCT"; readonly SavingsProduct: "SAVINGS_PRODUCT"; readonly Centre: "CENTRE"; readonly Branch: "BRANCH"; readonly User: "USER"; readonly LoanAccount: "LOAN_ACCOUNT"; readonly DepositAccount: "DEPOSIT_ACCOUNT"; readonly IdDocument: "ID_DOCUMENT"; readonly LineOfCredit: "LINE_OF_CREDIT"; readonly GlJournalEntry: "GL_JOURNAL_ENTRY"; }; export type DocumentOwnerTypeEnum = (typeof DocumentOwnerTypeEnum)[keyof typeof DocumentOwnerTypeEnum];