export declare function omitBy<T extends Record<string, any>>(input: T, predicate: (value: any, key: string) => boolean): T;
