export type ExtractInternal = K extends `_${string}` ? K : never; export type ExcludeInternal = K extends `_${string}` ? never : K; export type PickInternal = Pick>; export type OmitInternal = Omit>; //# sourceMappingURL=OmitInternal.d.ts.map