/**
 * @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;
