/**
 * Returns a whitelisted own-property names.
 *
 * If `null` or `undefined` is passed, an empty list will be returned.
 *
 * @param object An object (including primitives).
 * @returns A whitelisted own-property names.
 */
export default function getSafeOwnPropertyNames(object: unknown): string[];
//# sourceMappingURL=getSafeOwnPropertyNames.d.ts.map