import { CheckboxBaseProps } from '../base'; /** * Props for the Checkbox component. * * Extends {@link CheckboxBaseProps} with preset defaults * for checkbox-specific behavior. * * @category Checkbox */ export type CheckboxProps = Omit; /** * Checkbox component built on top of {@link CheckboxBase}. * * Provides default checkbox icons, filled style, * and sensible border defaults. * * @param props Component properties. * @function * * @example * * * @example * * * @category Checkbox */ export declare const Checkbox: import('react').ForwardRefExoticComponent>;