export declare type UserDetailsSchema = { firstName: string; lastName: string; signupEmail: string; password: string; authProvider: string; emailVerified: boolean; }; export declare type BioSchema = { bio: string; username: string; displayPicture: string; }; export declare type NameSchema = { signupEmail: string; firstName: string; lastName: string; }; export declare type ThirdPartyAuthSchema = { email: string; givenName: string; familyName: string; }; export declare type AppleEmailSchema = { email: string; givenName: string; familyName: string; }; export declare type CountrySchema = { countries: string[]; }; export declare type InterestsSchema = { interests: string[]; }; export interface PreferencesDto extends UserDetailsSchema, BioSchema, CountrySchema, InterestsSchema { }