import type { JSX } from 'preact';
import type { PhoneFieldProps, PhoneFieldSchema } from './types';
import type { CountryCode } from '../../core/models/country-code';
export declare const PHONE_FIELD: Array<keyof PhoneFieldSchema>;
export type PhonePrefixes = Partial<Record<CountryCode, string>>;
export declare const usePhonePrefixes: () => PhonePrefixes | undefined;
export declare function PhoneField({ country, name, data, valid, errors, labels, mask, readonly, optional, placeholders, handleChangeFor, }: PhoneFieldProps): JSX.Element;
