import React from 'react';
interface CheckboxFieldProps {
    id: string;
    name: string;
    label: string;
    checked: boolean;
    onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
    className?: string;
    description?: string;
}
export default function CheckboxField({ id, name, label, checked, onChange, className, description, }: CheckboxFieldProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=CheckboxField.d.ts.map