import { PropertyPath } from './internal/types.js';

declare function omit<T extends object>(object: T | null | undefined, ...paths: PropertyPath[]): T;

export { omit as default, omit };
