import * as RadixCheckbox from '@radix-ui/react-checkbox';
import type React from 'react';
type CheckboxProps = RadixCheckbox.CheckboxProps & {
    label?: string;
    containerClassName?: string;
};
export declare const Checkbox: React.FC<CheckboxProps>;
export {};
