/**
 * @param {object} obj - obj - the object to extract the keys of
 * @returns an array of the keys of the object
 */
declare const _default: <T extends object>(obj: T) => (keyof T)[];
export default _default;
