/// export interface CheckboxProps { label: string; value: string | number; name: string; id: string; } declare const Checkbox: ({ label, id, ...restProps }: CheckboxProps) => JSX.Element; export default Checkbox; //# sourceMappingURL=checkbox.d.ts.map