export declare const omit: (obj: Record<string, unknown>, fields: string[]) => {
    [x: string]: unknown;
};
