import { FormControlLabelProps } from '@mui/material/FormControlLabel'; import { CheckboxProps } from '@mui/material'; import React from 'react'; export type ZCheckboxProps = CheckboxProps & { label?: FormControlLabelProps['label']; }; export declare const CheckboxIcon: (props: { checked?: boolean; indeterminate?: boolean; disabled?: boolean; }) => JSX.Element; export declare const ZCheckbox: React.ForwardRefExoticComponent & React.RefAttributes>;