import { CommandLineAction, type ICommandLineActionOptions } from '@rushstack/ts-command-line';
import { ApiModel } from '@microsoft/api-extractor-model';
export interface IBuildApiModelResult {
    apiModel: ApiModel;
    inputFolder: string;
    outputFolder: string;
}
export declare abstract class BaseAction extends CommandLineAction {
    #private;
    protected constructor(options: ICommandLineActionOptions);
    protected buildApiModel(): IBuildApiModelResult;
}
//# sourceMappingURL=BaseAction.d.ts.map