@100mslive/hms-ai-ui
Version:
100ms AI UI components
15 lines (14 loc) • 691 B
TypeScript
import * as React from "react";
declare const Input: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement> & {
error?: boolean;
}, "ref"> & React.RefAttributes<HTMLInputElement>>;
declare const ComposableInput: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLInputElement> & React.InputHTMLAttributes<HTMLInputElement> & {
error?: boolean;
label?: string;
required?: boolean;
errorText?: string;
hintText?: string;
leftComponent?: React.ReactElement;
rightComponent?: React.ReactElement;
}, "ref"> & React.RefAttributes<HTMLInputElement>>;
export { Input, ComposableInput };