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