import * as React from "react";
import { UseCheckboxState } from "./useCheckboxState";
export type UseIndeterminateOptions = {
  checked?: boolean,
  state?: $PropertyType<UseCheckboxState, "state">,
  indeterminate?: boolean,
  ...
};
declare export var useIndeterminate: (x: UseIndeterminateOptions) => {
  ref: React.MutableRefObject<HTMLInputElement>,
  "aria-checked": $PropertyType<React.AriaAttributes, "aria-checked">,
  ...
};
