import { ISchema } from "../interface/open-api-mine/i-schema"; import { EnumProperty } from "../classes/enum-property"; import { InterfaceProperty } from "../classes/interface-property"; import { InterfaceArrayProperty } from "../classes/interface-array-property"; import { PrimitiveTypeProperty } from "../classes/primitive-type-property"; export declare const getInterfaceOrEnumFromSchema: (className: string, originalName: string, schema: ISchema, path: string) => InterfaceProperty | EnumProperty | InterfaceArrayProperty | PrimitiveTypeProperty;