import type { CommandInfo } from "./types"; export interface CommandDiscoveryOptions { pluginsEnabled?: boolean; enabledPluginsOverride?: Record; } export declare function discoverCommandsSync(directory?: string, options?: CommandDiscoveryOptions): CommandInfo[];