import type { CommandClass } from 'clipanion'; import type { IntentDefinition } from './intentCommandSpecs.ts'; import type { IntentCommandDefinition, IntentFileCommandDefinition, IntentNoInputCommandDefinition } from './intentRuntime.ts'; type BuiltIntentCommandDefinition = IntentCommandDefinition & { intentDefinition: IntentFileCommandDefinition | IntentNoInputCommandDefinition; }; export type ResolvedIntentCommandDefinition = BuiltIntentCommandDefinition & { catalogDefinition: IntentDefinition; }; export declare function resolveIntentCommandDefinitions(): ResolvedIntentCommandDefinition[]; export declare const intentCommands: CommandClass[]; export {}; //# sourceMappingURL=intentCommands.d.ts.map