import { HTMLAttributes, InputHTMLAttributes, RefObject } from 'react';
import { CommonCheckboxProps } from './types';
export interface UseCheckboxResult {
isPressed: boolean;
rootProps: HTMLAttributes;
inputProps: InputHTMLAttributes;
}
export declare function useCheckbox(props: CommonCheckboxProps, ref: RefObject): UseCheckboxResult;