import { replace } from '@intradoc/core';
import { type Options } from './CLIApp';
interface CLIOptions {
    argv: any[];
    app: Options;
    replacer: typeof replace;
    cwd?: string;
}
export declare const run: (options: CLIOptions) => Promise<void>;
export {};
