type OmitOptions<TRecord, TKey extends keyof TRecord> = {
    fields: Array<TKey>;
    records: Array<TRecord>;
};
/**
 * @description
 * Use this helper to omit the specified fields from each record, returning a new array of records without those keys.
 */
export declare const omit: <TRecord, TKey extends keyof TRecord>(options: OmitOptions<TRecord, TKey>) => Array<Omit<TRecord, TKey>>;
export {};
