import * as React from "react"; import { StructureProps } from "../systemHelpers"; export declare type CheckboxProps = StructureProps & { selected?: boolean; hasError?: boolean; disabled?: boolean; } & React.HTMLAttributes; export declare const Checkbox: { ({ selected, disabled, hasError, ...props }: CheckboxProps): JSX.Element; displayName: string; };