import type { CellphoneInputProps } from "./CellphoneInput.types"; declare const useCellphoneInput: (props: CellphoneInputProps) => { data: { isValid: boolean; status: "valid" | "loading" | "default" | "invalid"; }; fns: { handleChange: (maskedValue: string) => void; }; }; export default useCellphoneInput;