export declare function generatePayloadAndSignature(secret: string, body: any): {
    payload: string;
    signature: string;
};
