/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { TextInput, type TextInputProps } from 'react-native'; import { type ReactNode } from 'react'; import { CrossedMethods } from '@crossed/styled'; export type TextareaProps = Omit & { label?: string; clearable?: boolean; elementLeft?: ReactNode; elementRight?: ReactNode; error?: string; description?: string; extra?: string; style?: CrossedMethods; disabled?: boolean; }; export declare const Textarea: import("react").ForwardRefExoticComponent & { label?: string; clearable?: boolean; elementLeft?: ReactNode; elementRight?: ReactNode; error?: string; description?: string; extra?: string; style?: CrossedMethods; disabled?: boolean; } & import("react").RefAttributes>; //# sourceMappingURL=Textarea.d.ts.map