import { type ComponentPropsWithRef, type PropsWithChildren } from 'react'; export type Props = PropsWithChildren & { /** `true` のとき、チェック状態を `mixed` にする */ mixed?: boolean; /** チェックボックスにエラーがあるかどうか */ error?: boolean; }>; export declare const Checkbox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;