import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type CheckboxParts = { checkbox: 'hover' | 'focus' | 'active' | 'checked' | 'disabled'; icon: ''; }; declare type CheckboxDOMProps = React.ComponentPropsWithRef<'input'>; declare type CheckboxStyleConfigProp = { styleConfig?: StyleConfig; }; declare type CheckboxSystemProps = BoxSystemProps; export declare type CheckboxProps = CheckboxDOMProps & CheckboxStyleConfigProp & CheckboxSystemProps; export declare const Checkbox: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, import("../utils/systemProps").SystemProps, never>; export {};