tinacms
Version:
> The Fastest Way to Edit Next.js Content
9 lines (8 loc) • 504 B
TypeScript
import * as React from 'react';
declare type a = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
export interface TextAreaProps extends a {
error?: boolean;
ref?: any;
}
export declare const TextArea: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "key" | keyof React.TextareaHTMLAttributes<HTMLTextAreaElement>> & React.RefAttributes<HTMLTextAreaElement>>;
export {};