import { default as React } from 'react'; export interface CheckboxProps extends React.InputHTMLAttributes { label?: string; score?: string; 'aria-label'?: string; } export declare const Checkbox: ({ label, score, className, id: providedId, "aria-label": ariaLabel, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;