import { ReactElement } from '../../@declares';
import { Checkbox } from './List';
declare namespace Checker {
    type Exclude = 'type' | 'options';
    export type Input = Omit<Checkbox.Input<boolean, boolean>, Exclude> & {
        label: ReactElement;
    };
    export {};
}
declare const Checker: (p: Checker.Input) => import("react/jsx-runtime").JSX.Element;
export { Checker, Checker as default };
