import type { IRiskyCommandController } from '@splunk/dashboard-types'; /** * Controller caches the SPL query */ export default class RiskyCommandController implements IRiskyCommandController { disableRiskyCheckList: Set; constructor(); /** * Check if a search query requires risky cmd verification * @param {String} query * @returns Boolean */ shouldCheckRiskyCommand(query: string): boolean; /** * Add query to disableRiskyCheckList * @param {String} query */ addToDisableCheckList(query: string): void; /** * Clean up the disableRiskyCheckList */ clearDisableCheckList(): void; } //# sourceMappingURL=RiskyCommandController.d.ts.map