import { ResourceInfo } from '../types'; interface InsightMonitorProps { name: string; alertGroupAction?: { resourceGroupName: string; actionGroupName: string; }; appInsight: ResourceInfo; url: string; frequency?: 300 | 600 | 900; } export declare const addInsightMonitor: ({ name, alertGroupAction, appInsight, url, frequency, }: InsightMonitorProps) => void; export {};