import { ProjectConfig } from '../types';
interface SlashCommand {
    name: string;
    category: string;
    content: string;
    description: string;
}
export declare function generateSlashCommands(config: ProjectConfig): Promise<SlashCommand[]>;
export declare function generateSlashCommandFiles(commands: SlashCommand[]): GeneratedFile[];
import { GeneratedFile } from '../adapters/base';
export {};
//# sourceMappingURL=slashCommands.d.ts.map