export declare const cli: import("meow").Result<{
    cwd: {
        type: "string";
        isRequired: true;
        default: string;
    };
    rootBaseUrl: {
        type: "string";
        default: string;
    };
    defaultExcludes: {
        type: "boolean";
        default: true;
    };
    excludes: {
        type: "string";
        isMultiple: true;
        default: string[];
    };
    format: {
        type: "string";
        default: string;
    };
}>;
export declare const run: (input?: string[], flags?: {
    cwd: string;
    rootBaseUrl: string;
    defaultExcludes: boolean;
    excludes: string[];
    format: string;
} & Record<string, unknown>) => Promise<{
    exitStatus: number;
    stdout: string | null;
    stderr: Error | null;
}>;
//# sourceMappingURL=cli.d.ts.map