declare type createGeneratorRequest = {
    length?: number;
    type?: undefined | `hex` | `base64` | `url-safe` | `numeric` | `distinguishable` | `ascii-printable` | `alphanumeric`;
    characters?: string;
};
declare const cryptoRandomString: (_request?: createGeneratorRequest) => string;

export { cryptoRandomString };
