export declare namespace Webhook { function verify(body: Body, secret: string): Error | Body; interface Verify { account: string; object: string; object_id: number; action: "added" | "changed" | "removed" | "transformed"; time: string; client_secret: string; data?: ApplicationData | StockData; } interface Body { account: string; account_number: string; object: string; object_id: number; action: "added" | "changed" | "removed" | "transformed"; time: string; verify: string; data?: any; } interface ApplicationData { user_id: string; access_token: string; } interface StockData { type: 1 | 2 | 3 | 4 | 5; element_id: string; storage_id: string; value_relative: number; value_absolute: number; } }