@gluestack-ui/textarea
Version:
A universal headless text-area component for React Native, Next.js & React
13 lines (12 loc) • 514 B
TypeScript
import type { ITextareaComponentType } from './types';
/**
* @deprecated The method should not be used, use createTextarea instead
*/
export declare function createTextArea<Root, Input>({ Root, Input, }: {
Root: React.ComponentType<Root>;
Input: React.ComponentType<Input>;
}): ITextareaComponentType<Root, Input>;
export declare function createTextarea<Root, Input>({ Root, Input, }: {
Root: React.ComponentType<Root>;
Input: React.ComponentType<Input>;
}): ITextareaComponentType<Root, Input>;