import type { CommandDefinition } from "./types"; export declare function getCommandLoaderCacheKey(directory?: string): Promise; export declare function getCachedCommands(cacheKey: string): Promise> | undefined; export declare function setCachedCommands(cacheKey: string, commands: Promise>): void; export declare function deleteCachedCommands(cacheKey: string): void; export declare function clearCommandLoaderCache(): void;