@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
19 lines • 756 B
TypeScript
import { Input as InputComponent } from './input';
import { Password } from './password';
import { Phone } from './phone';
import { RichTextArea } from './richTextArea';
import { TextArea } from './textArea';
import './style.less';
export type { BaseInputProps, InputProps } from './input';
export type { PasswordInputProps } from './password';
export type { RichTextAreaProps, RichTextAreaCustomLabels, ToolbarGroup, } from './richTextArea';
export type { PhoneInputProps } from './phone';
export type InputType = typeof InputComponent & {
Password: typeof Password;
Phone: typeof Phone;
TextArea: typeof TextArea;
RichTextArea: typeof RichTextArea;
};
declare const Input: InputType;
export { Input, };
//# sourceMappingURL=index.d.ts.map