zent
Version:
一套前端设计语言和基于React的实现
12 lines (11 loc) • 408 B
TypeScript
/// <reference types="react" />
export interface IFormControlProps {
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
required?: boolean;
invalid?: boolean;
label?: React.ReactNode;
withoutLabel?: boolean;
}
export declare const FormControl: import("react").ForwardRefExoticComponent<IFormControlProps & import("react").RefAttributes<HTMLDivElement>>;