export interface UsePhoneInput { getPhoneNumber: ({ country, phone }: { country?: string; phone?: string; }) => string; } /** * A custom hook for managing phone number input state and validation. * * @property {Function} getPhoneNumber - A function for get formatted phone number with country code and plus sign */ export declare const usePhoneInput: () => UsePhoneInput;