export declare class NativeCrypto { /** * Returns a secure random alphanumeric string of the specified length. */ static getSecureRandomString(length: number): string; /** * Returns a random UUID string. */ static randomUUID(): string; }