import { AuthOptions } from './request';
export declare const createNonce: () => string;
interface SignParams extends Pick<AuthOptions, 'appSecret'> {
    method: string;
    timestamp: string;
    nonce: string;
    url: string;
    params?: Record<string, any>;
}
export declare const sign: (params: SignParams) => string;
export {};
