/** * Gets the keys of the specified value in the type that corresponds with that value. * * For example: `{a: 'one', b: 'two'}` returns `['a', 'b']` as `Array<'a' | 'b'>` rather than as `string[]`. */ export declare const getTypedKeys: (value: T) => Array; //# sourceMappingURL=get-typed-keys.d.ts.map