import type { BaseInnerFormProps } from '../../core/hooks/useForm/types';
import type { CountryCode } from '../../core/models/country-code';
import type { PhoneFieldSchema } from '../PhoneField/types';
export type ContactDetailsSchema = PhoneFieldSchema & {
    email?: string;
};
export interface ContactDetailsProps extends BaseInnerFormProps<ContactDetailsSchema> {
    country: CountryCode;
    triggerValidation?: (schema?: Array<keyof PhoneFieldSchema>) => void;
}
