import { Enum, Intersection } from "../meta-types"; import { DeepGet, HasKeyIn } from "../utils"; import { ParseSchema } from "."; export declare type ParseEnumSchema = HasKeyIn extends true ? Intersection>, ParseSchema>> : Enum>;