/** Same as Object.keys() but with type inference */
export declare function objectKeys<T extends object>(obj: T): (keyof T)[];
