import { ServerApiClient, type ServerClientOptions } from "./server-api.js"; export type AlertRule = Record; export type UpdateAlertRuleRequest = Record; export declare class MonitoringClient extends ServerApiClient { constructor(options?: ServerClientOptions); getAlertRule(ruleId: string, orgId?: string): Promise; updateAlertRule(ruleId: string, request: UpdateAlertRuleRequest, orgId?: string): Promise; deleteAlertRule(ruleId: string, orgId?: string): Promise; } //# sourceMappingURL=monitoring.d.ts.map