import { TargetConfiguration } from '@nx/devkit';
import { UpdateSwaggerJsonExecutorSchema } from '../executors/update-swagger/schema';
/**
 * Returns a TargetConfiguration for the nx-dotnet/core:build executor
 */
export declare function getSwaggerExecutorConfiguration(outputDirectory: string): SwaggerExecutorConfiguration;
/**
 * Configuration options relevant for the build executor
 */
export type SwaggerExecutorConfiguration = TargetConfiguration & {
    executor: '@nx-dotnet/core:update-swagger';
    options: Partial<UpdateSwaggerJsonExecutorSchema>;
};
