export type SignEncodeMethod = 'hex' | 'base64';
export type SignAlgorithm = 'SHA-256' | 'SHA-512';
/**
 * Sign a message, with a secret, using the Web Crypto API
 */
export declare function signMessage(message: string, secret: string): Promise<string>;
