export interface Account {
    uuid: string;
    accountNumber: string | null;
    accountType: string;
    activationDate: string | null;
    name: string;
    userProfile: string;
}
export type CreateAccount = Omit<Account, 'uuid' | 'accountNumber' | 'activationDate'>;
export type UpdateAccount = Partial<Omit<Account, 'uuid' | 'accountNumber' | 'activationDate'>>;
//# sourceMappingURL=account.d.ts.map