UNPKG

251 BTypeScriptView Raw
1import { ReactNode } from 'react';
2interface NonceProviderProps {
3 nonce: string;
4 children: ReactNode;
5 cacheKey: string;
6}
7declare const _default: ({ nonce, children, cacheKey }: NonceProviderProps) => JSX.Element;
8export default _default;