@alauda/doom
Version:
Doctor Doom making docs.
9 lines (8 loc) • 342 B
TypeScript
export interface ResizableUserInputProps {
placeholder?: string;
value?: string;
loading?: boolean;
onChange?: (value: string) => void;
onSend?: (value: string) => void;
}
export declare const ResizableUserInput: ({ value, loading, onChange, onSend, }: ResizableUserInputProps) => import("react/jsx-runtime").JSX.Element;