import * as React from 'react';
import { CommonProps } from '../../typings/PCRCommonProps';
export declare type UseLockedArgs = {
    locked: CommonProps<unknown>['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+
 */
export declare const useLocked: ({ locked, style }: UseLockedArgs) => React.CSSProperties | undefined;
//# sourceMappingURL=useLocked.d.ts.map