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