export declare type CheckboxProps = { label?: string; value: boolean; onChange: () => void; disabled?: boolean; required?: boolean; };