import type React from "react"; import type { SpaceProps } from "styled-system"; import { type ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import type { DefaultNDSThemeType } from "../theme"; type NativeInputProps = Omit, "size">; type CheckboxProps = NativeInputProps & SpaceProps & { children?: React.ReactNode; htmlSize?: number; variant?: ComponentVariant; labelText?: string; checked?: boolean; defaultChecked?: boolean; error?: boolean; indeterminate?: boolean; theme?: DefaultNDSThemeType; }; declare const Checkbox: React.ForwardRefExoticComponent & React.RefAttributes>; export default Checkbox;