/** * Removes properties from an object. * * @see https://github.com/benjycui/omit.js * * @param obj object * @param fields properties to omit */ export declare const omitProps: (obj: T, fields: K[]) => Pick>;