UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

7 lines (6 loc) 330 B
import React from 'react'; type Props = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> & { readonly status: 'error' | 'warning' | 'ok'; }; export declare const RemTextarea: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<HTMLTextAreaElement>>; export {};