import type { AnyObject } from './types'; /** * returns an array of the provided object keys * @example * keys({ a: 1, b: 2, c: 3 }) * // returns ['a', 'b', 'c'] */ export default function keys(obj: T): Array; //# sourceMappingURL=keys.d.ts.map