/** * Verify webhook signature * @param payload - Raw request body (string, Buffer, or parsed JSON object) * @param signature - Signature from X-Sinlyxe-Signature header * @param secret - Your webhook secret * @returns True if signature is valid */ export function verifyWebhook(payload: string | Buffer | Record, signature: string, secret: string): boolean; /** * Create webhook signature (for testing purposes) * @param payload - Payload to sign * @param secret - Webhook secret * @returns Signature in format "sha256=" */ export function createWebhookSignature(payload: string | Record, secret: string): string;