export declare const log: (message: string) => void;
export declare const affectedAction: ({ cwd, action, all, base, json, restArgs, tsConfigFilePath, includeFiles, target, }: AffectedOptions) => Promise<void>;
interface AffectedOptions {
    cwd: string;
    tsConfigFilePath: string;
    action?: string;
    all?: boolean;
    base?: string;
    json: boolean;
    includeFiles: string[];
    restArgs: string[];
    target: string[];
}
export declare function run(): Promise<void>;
export {};
