import type { SchemaObjectMetadata } from '@nestjs/swagger/dist/interfaces/schema-object-metadata.interface'; import type { SwaggerEnumType } from '@nestjs/swagger/dist/types/swagger-enum.type'; export declare function getEnumValues(enumType?: SwaggerEnumType): string[] | number[]; export declare function getEnumType(values: (string | number)[]): 'string' | 'number'; export declare function addEnumArraySchema(paramDefinition: Partial>, decoratorOptions: Partial>): void; export declare function addEnumSchema(paramDefinition: Partial>, decoratorOptions: Partial>): void; export declare const isEnumArray: >>(obj: Record) => obj is T; export declare const isEnumDefined: >>(obj: Record) => obj is T; export declare const isEnumMetadata: (metadata: SchemaObjectMetadata) => any;