import type { AllCommandsConfig } from '../command';
export interface Flow {
    id: number;
    name: string;
    description?: string;
    commands: AllCommandsConfig[];
}
