import { Tree } from '@nx/devkit';
export type Command = {
    command: string;
} | {
    comment: string;
} | string;
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;
