import { ZodEnum } from 'zod';
import { MapNullableType } from '../types';
export declare class EnumTransformer {
    transform(zodSchema: ZodEnum, isNullable: boolean, mapNullableType: MapNullableType): {
        enum: (string | number | null | undefined)[];
        type?: ((import("openapi3-ts/oas30").SchemaObjectType | import("openapi3-ts/oas30").SchemaObjectType[]) & (import("openapi3-ts/oas31").SchemaObjectType | import("openapi3-ts/oas31").SchemaObjectType[])) | undefined;
        nullable?: boolean | undefined;
    };
}
