import { SchemaObjectMetadata } from '../interfaces/schema-object-metadata.interface'; import { SwaggerEnumType } from '../types/swagger-enum.type'; export declare function getEnumValues(enumType: SwaggerEnumType | (() => 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;