/** * Generates a random token for API keys. * API Keys are prefixed with letter "wat_" to make token verification easier. * When authentication plugins kick in, they will be able to tell if they should handle * the token by checking the first letter. */ export declare const generateToken: (tokenLength?: number) => string;