export declare const ValidAreaCodes: string[]; export type PhoneFormat = "standard" | "business" | "international" | "plain"; export type PhoneNumberProps = { format?: PhoneFormat; areaCode?: string; }; export declare const phoneNumber: ({ areaCode, format, }: PhoneNumberProps) => string; export declare const formatPhoneNumber: (phone: string, format: PhoneFormat) => string;