interface contentItem { key: string; value: string; } interface sendWebhookProps { title: string; content: contentItem[]; } export declare const sendWarningLog: ({ title, content }: sendWebhookProps) => Promise; export {};