UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines (12 loc) 764 B
/// <reference types="react" /> import type { FullToken, GenerateStyle } from '../../theme/internal'; export interface ComponentToken { } interface CheckboxToken extends FullToken<'Checkbox'> { checkboxCls: string; checkboxSize: number; } export declare const genCheckboxStyle: GenerateStyle<CheckboxToken>; export declare function getStyle(prefixCls: string, token: FullToken<'Checkbox'>): import("@ant-design/cssinjs").CSSInterpolation[]; declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>, string, string | undefined]; export default _default;