import { PhoneInputProps } from "react-native-international-phone-number"; import { AndroidNativeProps } from "@react-native-community/datetimepicker"; import { TextInput, type TextInputProps } from "react-native"; import { IoniconsType } from "../../lib/types"; type InputProps = TextInputProps & { ref?: React.RefObject; label?: string; icon?: IoniconsType; right?: React.ReactNode; }; export declare function Input(args: InputProps): import("react").JSX.Element; export declare function InputPhone(args: PhoneInputProps & { label: string; }): import("react").JSX.Element; export declare function InputDateTime(args: AndroidNativeProps & { label: string; icon?: IoniconsType; value?: Date | null; onChange: (event: any, date?: Date) => void; }): import("react").JSX.Element; export {}; //# sourceMappingURL=Input.d.ts.map