import { Tree } from '@nx/devkit';
export type Command = {
    command?: string;
    comments?: string[];
    alwaysRun?: boolean;
};
export interface Schema {
    name: string;
    ci: 'github' | 'circleci';
    packageManager?: null;
    commands?: Command[];
}
export declare function ciWorkflowGenerator(tree: Tree, schema: Schema): Promise<void>;
export default ciWorkflowGenerator;
//# sourceMappingURL=generator.d.ts.map