import { SyntheticEvent } from "react"; export interface CheckableContextType { checkedValue?: string | string[]; onCheck?: (event: SyntheticEvent, newValue: string) => void; } export declare const CheckableContext: import("react").Context; export declare function useCheckableContext(): [CheckableContextType, boolean]; declare type UseCheckablePropsReturn = Omit & { checked?: boolean; }; export declare function useCheckableProps({ value }: { value?: string; }): [UseCheckablePropsReturn, boolean]; export {};