import * as React from "react";
import { PCRSwitchProps } from "../../typings/PCRSwitchProps";
export type UseAriaCheckedOptions = {
  setState?: $PropertyType<PCRSwitchProps, "setState">,
  checked?: $PropertyType<PCRSwitchProps, "checked">,
  ...
};
/**
 * A small hook to help manage correct aria-checked state when switch
 * is used as an uncontrolled component. We need this to run
 * for a11y purposes. FOr the `switch` role, `aria-checked` is required.
 */
declare export var useAriaChecked: (
  x: UseAriaCheckedOptions
) => React.RefObject<HTMLInputElement>;
