import { PromiseExecutor } from '@nx/devkit';
export interface DeployExecutorSchema {
    cwd: string;
    only?: string[];
}
declare const runExecutor: PromiseExecutor<DeployExecutorSchema>;
export default runExecutor;
