declare function pluck(obj: object, keys: string[]): object;
declare function omit(obj: object, keys: string[]): object;

export { omit, pluck };
