import { ComponentProps } from "react"; import { TextInputProps } from "react-native"; import { TextInputBase } from "../../components/textInput/TextInputBase"; import { InputType } from "../types"; export type RNTextInputProps = Pick; type InputProps = Pick, "textInputProps"> & { valueFormat?: (value: string) => string; textInputProps?: RNTextInputProps; }; export declare const getInputPropsByType: (type: InputType) => InputProps | undefined; export {}; //# sourceMappingURL=index.d.ts.map