import { Tree } from '@nx/devkit';
import type { ExecutorContext } from '@nx/devkit';
export declare const getRoutinelessConfig: (context: Tree | ExecutorContext) => RoutinelessConfig;
export declare const updateRoutinelessConfig: (tree: Tree, updater: (config: RoutinelessConfig) => RoutinelessConfig) => void;
export interface RoutinelessConfig {
    infraApp?: string;
}
