import * as React from 'react';
export interface CSPContextValue {
  nonce?: string | undefined;
  disableStyleElements?: boolean | undefined;
}
/**
 * @internal
 */
export declare const CSPContext: React.Context<CSPContextValue | undefined>;
/**
 * @internal
 */
export declare function useCSPContext(): CSPContextValue;