/** * Parses a string, number or enum to an enum. */ export declare function parseEnum(input: string | number | T[keyof T], enumType: T): T[keyof T]; /** * Simple type helper to merge types that have the same field names. */ export type NeonLike = { [Property in keyof NeonType & keyof JsonType]: NeonType[Property] | JsonType[Property]; }; //# sourceMappingURL=internal.d.ts.map