import { HandlerResult, NoParameters } from "@atomist/automation-client"; import { CommandHandlerRegistration, CommandListenerInvocation } from "@atomist/sdm"; import { JiraCacheStats } from "./jiraCache"; /** * Flush Cache is used to complete delete the JIRA Cache. * * @returns {void} */ export declare function flushCache(): Promise; /** * PurgeCacheEntry is used to purge individual items from the JIRA cache. * * @param {string} key name to purge * @returns {void} */ export declare function purgeCacheEntry(key: string): Promise; /** * getStats returns the usage information from the JIRA cache */ export declare function getStats(): Promise; export declare const getJiraStatsHandler: (cli: CommandListenerInvocation) => Promise; export declare const getJiraStats: CommandHandlerRegistration;