import * as React from "react";
import { CommonProps } from "../../typings/PCRCommonProps";
export type UseLockedArgs = {
  locked: $PropertyType<CommonProps<mixed>, "locked">,
  style?: React.CSSProperties,
  ...
};
/**
 * A simplier way to prevent checking when PCR is in locked mode.
 * This is way simplier than controlling the checkbox using
 * event handlers. Supports IE 11+
 */
declare export var useLocked: (x: UseLockedArgs) => React.CSSProperties | void;
