import { IsTruthy, OmitKeysMatching } from './types/index.js';

export declare const filterObject: <T extends Record<string | number | symbol, unknown>>(obj: T) => OmitKeysMatching<T, IsTruthy<T>>;
