import { OpenApi } from "@typia/interface";
import { MetadataSchema } from "../../internal/legacy";
import { ITypedHttpRoute } from "../../structures/ITypedHttpRoute";
export declare namespace SwaggerOperationResponseComposer {
    const compose: (props: {
        schema: (metadata: MetadataSchema) => OpenApi.IJsonSchema | undefined;
        route: ITypedHttpRoute;
    }) => Record<string, OpenApi.IOperation.IResponse>;
}
