export interface InvestmentPreference {
    uuid: string;
    userProfile: string;
    investmentHorizon: string;
    riskTolerance: string;
    investmentExperience: string;
    investmentAmount: string;
    sourceOfFunds: string[];
}
export type CreateInvestmentPreference = Omit<InvestmentPreference, 'uuid' | 'userProfile'>;
export type UpdateInvestmentPreference = Partial<Omit<InvestmentPreference, 'uuid' | 'userProfile'>>;
//# sourceMappingURL=investment.d.ts.map