export type UserPropertiesJson = { phone_number?: string; email_address?: string; marketing_notification_consent?: boolean; marketing_notification_sms_consent?: boolean; marketing_notification_email_consent?: boolean; marketing_notification_push_consent?: boolean; marketing_notification_kakao_consent?: boolean; nighttime_notification_consent?: boolean; is_all_notification_blocked?: boolean; age?: number; gender?: 'male' | 'female'; }; export declare class UserProperties { phone_number?: string | undefined; email_address?: string | undefined; marketing_notification_consent?: boolean | undefined; marketing_notification_sms_consent?: boolean | undefined; marketing_notification_email_consent?: boolean | undefined; marketing_notification_push_consent?: boolean | undefined; marketing_notification_kakao_consent?: boolean | undefined; nighttime_notification_consent?: boolean | undefined; is_all_notification_blocked?: boolean | undefined; age?: number | undefined; gender?: "male" | "female" | undefined; constructor(phone_number?: string | undefined, email_address?: string | undefined, marketing_notification_consent?: boolean | undefined, marketing_notification_sms_consent?: boolean | undefined, marketing_notification_email_consent?: boolean | undefined, marketing_notification_push_consent?: boolean | undefined, marketing_notification_kakao_consent?: boolean | undefined, nighttime_notification_consent?: boolean | undefined, is_all_notification_blocked?: boolean | undefined, age?: number | undefined, gender?: "male" | "female" | undefined); static from(input: unknown): UserProperties | null; toJson(): UserPropertiesJson; } //# sourceMappingURL=UserProperties.d.ts.map