type OmitUndefined = { [P in keyof T]: NonNullable; }; export declare const omitUndefined: >(obj: T) => OmitUndefined; export {};