export declare const enum ControlSize { Small = "small", Medium = "medium", Large = "large" } export declare const enum ControlBorderStyle { None = "none", Thick = "thick", Thin = "thin" } export declare const enum ControlIntent { Default = "default", Primary = "primary", Success = "success", Warning = "warning", Danger = "danger" } export declare const enum ControlRemoveRoundBorder { TopLeft = 1, TopRight = 2, BottomRight = 4, BottomLeft = 8, Left = 9, Right = 6, Top = 3, Bottom = 12, All = 15 } export interface ControlProps { disabled?: boolean; intent?: ControlIntent; size?: ControlSize; borderStyle?: ControlBorderStyle; removeRoundBorder?: number; highlight?: boolean; highlightRemoveRoundBorder?: number; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; onClick?: React.MouseEventHandler; }