import { BoxProps } from '../Box';
import { CheckboxProps } from './Checkbox';
declare type UseCheckboxStyles = Pick<CheckboxProps, 'invalid' | 'checked' | 'indeterminate'>;
declare const useCheckboxStyles: ({ invalid, checked, indeterminate }: UseCheckboxStyles) => BoxProps;
export default useCheckboxStyles;
