import * as React from 'react'; export declare type UseCheckboxState = { /** * The state object of the checkbox. This can be a boolean or * an array of items. * @default false */ state?: boolean | string | any[]; /** * Your change handlers to run _after_ the default dispatch * has occurred. */ onChange?: React.InputHTMLAttributes['onChange']; }; export declare const useCheckboxState: ({ state: initialState, onChange, }?: UseCheckboxState) => { state: string | boolean | any[]; setState: React.Dispatch>; onChange: (e: React.ChangeEvent) => void; }; //# sourceMappingURL=useCheckboxState.d.ts.map