import React from 'react'; export declare const CheckboxRadioContainer: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>; export type CheckBoxProps = React.HTMLProps; /** * @typedef {object} CheckBoxProps * @alias CheckBoxProps * @memberof module:@adminjs/design-system.CheckBox * @property {string} [...] All props default to _checkbox_ html input like `onChange`, * `checked` etc. */ /** * @classdesc * * * * HTML CheckBox * * ### Usage * * ```javascript * import { CheckBox, CheckBoxProps } from '@adminjs/design-system' * ``` * * @component * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-checkbox--default StoryBook} * @hideconstructor * @subcategory Atoms * @example * return ( * * * * * ) * @section design-system */ declare const CheckBox: React.FC; export { CheckBox }; export default CheckBox;