import type { CreateNonceOptions } from '../types'; /** * Create nonce in Node.js environment. Nonce is a random string that is designed to be used once and then discarded. To generate new nonce, call this function again. * This function is created because we need function to generate nonce to be used in Content Security Policy (CSP). If there is other use-case that need nonce too and it has different requirements, we should discuss whether to make this function more general to support them all, or create specific function for each use-case. */ export default function createNonce(options?: CreateNonceOptions): string;