declare function omit<T>(obj: T, props: string[]): T;
declare function omitBy<T>(obj: T, check: Function): T;
export { omit, omitBy };
