export declare type Keys = keyof T; /** * Returns the names of the enumerable string properties and methods of an object. * @param object The original object. */ export declare const keys: (object: T) => (keyof T)[];