@ucloud-pccl/react-components
Version:
UCloud pccl react components
13 lines (12 loc) • 888 B
TypeScript
/// <reference types="react" />
import NumberInput from 'src/components/NumberInput';
import Textarea from 'src/components/Textarea';
import { InputProps } from './Input';
declare const ExportClassInput: import("react").ComponentClass<import("./Input").DefinedInputProps & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, keyof import("./Input").DefinedInputProps> & import("react").RefAttributes<import("./Input").InputRef>, any> & {
Search: import("react").ComponentClass<import("./Search").SearchProps & import("./Input").DefinedInputProps & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, keyof import("./Input").DefinedInputProps> & import("react").RefAttributes<import("./Input").InputRef>, any>;
Number: typeof NumberInput;
Textarea: typeof Textarea;
Sizes: ["sm", "md", "lg"];
};
export type { InputProps };
export default ExportClassInput;