export declare const sign: (params: Record<string, any>, privateKey: string) => string;
declare const SignUtil: {
    rsaSign: (content: string, privateKey: string, hash: string) => string;
    _formatKey: (key: string) => string;
};
export default SignUtil;
