import { IMetadataComponents, IMetadataSchema } from "@typia/interface";
import { MetadataFactory } from "../internal/legacy";
import { IReflectType } from "./IReflectType";
export interface IReflectHttpOperationException {
    status: number | "2XX" | "3XX" | "4XX" | "5XX";
    description: string | null;
    example?: any;
    examples?: Record<string, any>;
    type: IReflectType;
    metadata: IMetadataSchema;
    components: IMetadataComponents;
    validate: MetadataFactory.Validator;
}
