zarm
Version:
基于 React 的移动端UI库
12 lines (11 loc) • 815 B
TypeScript
/// <reference types="react" />
export type { CheckboxCssVars, CheckboxProps, CheckboxRef } from './Checkbox';
export type { CheckboxGroupCssVars, CheckboxGroupProps } from './CheckboxGroup';
declare const _default: import("react").ForwardRefExoticComponent<import("./interface").BaseCheckboxProps & import("../utils/utilityTypes").HTMLProps<import("./Checkbox").CheckboxCssVars> & {
renderIcon?: (props: import("./Checkbox").CheckboxProps) => import("react").ReactNode;
render?: (props: import("./Checkbox").CheckboxProps) => import("react").ReactNode;
onChange?: (e: import("react").ChangeEvent<HTMLInputElement>) => void;
} & import("react").RefAttributes<import("./Checkbox").CheckboxRef>> & {
Group: import("react").FC<import("./CheckboxGroup").CheckboxGroupProps>;
};
export default _default;