/** * A type-safe version of `Object.keys` that preserves key types. * @param value - The object to retrieve keys from. * @returns An array of keys from the object. */ export declare const objectKeys: (value: T) => Array;