import type * as Latest from "./latest"; export type PruningNodeType = { type: "endpoint"; endpointId: Latest.EndpointId; } | { type: "webSocket"; webSocketId: Latest.WebSocketId; } | { type: "webhook"; webhookId: Latest.WebhookId; } | { type: "grpc"; grpcId: Latest.GrpcId; } | { type: "graphql"; graphqlOperationId: Latest.GraphQlOperationId; }; export declare function prune(api: Latest.ApiDefinition, ...nodes: PruningNodeType[]): Latest.ApiDefinition; //# sourceMappingURL=prune.d.ts.map