import React from 'react'; export type CheckboxVariant = 'accent' | 'primary' | 'secondary' | 'static-black' | 'static-white'; export type CheckboxSize = 'sm' | 'md' | 'lg'; export type CheckboxProps = { label?: string; variant?: CheckboxVariant; checked?: boolean; mixed?: boolean; disabled?: boolean; size?: CheckboxSize; onChange?: (checked: boolean) => void; } & Omit, 'size' | 'onChange'>; export declare const Checkbox: ({ label, variant, checked, mixed, disabled, size, onChange, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;