import { Type } from '@nestjs/common'; import { SchemaObject } from '../interfaces/open-api-spec.interface'; import { ParamWithTypeMetadata } from '../services/parameter-metadata-accessor'; export declare const exploreApiParametersMetadata: (schemas: Record, instance: object, prototype: Type, method: Function) => { parameters: (Partial | Partial | { schema: { type: string; items: any; nullable?: boolean; discriminator?: import("../interfaces/open-api-spec.interface").DiscriminatorObject; readOnly?: boolean; writeOnly?: boolean; xml?: import("../interfaces/open-api-spec.interface").XmlObject; externalDocs?: import("../interfaces/open-api-spec.interface").ExternalDocumentationObject; example?: any; examples?: any[] | Record; deprecated?: boolean; allOf?: (SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject)[]; oneOf?: (SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject)[]; anyOf?: (SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject)[]; not?: SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject; properties?: Record; additionalProperties?: SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject | boolean; patternProperties?: SchemaObject | import("../interfaces/open-api-spec.interface").ReferenceObject | any; description?: string; format?: string; default?: any; title?: string; multipleOf?: number; maximum?: number; exclusiveMaximum?: boolean; minimum?: number; exclusiveMinimum?: boolean; maxLength?: number; minLength?: number; pattern?: string; maxItems?: number; minItems?: number; uniqueItems?: boolean; maxProperties?: number; minProperties?: number; required?: string[]; enum?: any[]; 'x-enumNames'?: string[]; }; } | { schema: import("lodash").Dictionary; description?: string; required?: boolean; deprecated?: boolean; allowEmptyValue?: boolean; style?: import("../interfaces/open-api-spec.interface").ParameterStyle; explode?: boolean; allowReserved?: boolean; examples?: Record; example?: any; content?: import("../interfaces/open-api-spec.interface").ContentObject; } | { schema: import("lodash").Dictionary; name?: string | number | object; type?: Type; in?: import("../interfaces/open-api-spec.interface").ParameterLocation | "body" | "placeholder"; isArray?: boolean; items?: SchemaObject; required?: boolean; enum?: unknown[]; enumName?: string; enumSchema?: import("../interfaces/enum-schema-attributes.interface").EnumSchemaAttributes; selfRequired?: boolean; })[]; };