import { default as React } from 'react'; export declare const rootClassName = "teddy-checkbox"; export type LabelProps = React.ComponentPropsWithoutRef<'label'> & { isError?: boolean; }; /** The root element of the checkbox component is based on the label component. */ export declare const Root: React.ForwardRefExoticComponent, HTMLLabelElement>, "ref"> & { isError?: boolean; } & React.RefAttributes>;