export { omitNilProps };
declare function omitNilProps<T>(inputObj: T): {
    [K in keyof T]: NonNullable<T[K]>;
};
