import { LayoutChangeEvent } from "react-native"; import { BoxStyle } from ".."; declare const useTextField: ({ value, fontSize, status, borderColor, focusColor, labelColor, placeHolderColor, errorColor, onChangeText, boxStyle, isTextArea }: { value: string; fontSize: number; status: 'default' | 'error'; borderColor: string; focusColor: string; labelColor: string; placeHolderColor: string; errorColor: string; onChangeText: any; boxStyle: BoxStyle; isTextArea: boolean; }) => { focus: boolean; labelAnimation: { top: number; fontSize: number; }; statusColor: string; labelStatusColor: string; handleBlur: () => void; handleFocus: () => void; handleChangeText: (text: string) => void; onLayout: (event: LayoutChangeEvent) => void; }; export default useTextField; //# sourceMappingURL=useTextField.d.ts.map