export interface PhoneInputBoxProps {
    value: string;
    onChange: (phone: string, formattedPhone: string, isValid: boolean) => void;
    onFocus?: () => void;
    onBlur?: () => void;
    onEnter?: () => void;
}
export declare function PhoneInputBox(props: PhoneInputBoxProps): import("react/jsx-runtime").JSX.Element;
export interface SearchInputBoxProps {
    value: string;
    onChange: (value: string) => void;
    onClear?: () => void;
    placeholder?: string;
}
export declare function SearchInputBox(props: SearchInputBoxProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Inputs.d.ts.map