export type ProfileFormValues = { name: string; email: string; address: string; password: string; termsAccepted: boolean; gender: string; interests: boolean; skillLevel: number; experienceRange: [number, number]; favoriteFramework: string[]; skills: string[]; birthdate: string | Date; availableForWork: boolean; wantsNewsletter: boolean; promotionalEmails: boolean; darkMode: boolean; notifications: boolean; preferredContactMethod: string; acceptedGuidelines: boolean; }; declare const ProfileForm: () => import("react/jsx-runtime").JSX.Element; export default ProfileForm;