export declare type OmitKeys = Pick>; export declare const useOmit: (obj: T, keys: K[]) => Omit; export declare const useDeepOmit: (obj: T, keys: K[]) => OmitKeys;