/** * Gets a string array of the object's own symbols * * @since v0.0.1 * @category Object * @template {T} - The type of the input * @param {T} value - The object from which to get the symbols * @returns {symbol[]} * @example * keys({ [Symbol('my symbol')]: 'value' }) //=> [Symbol('my symbol')] * keys({}) //=> [] * keys(null) //=> [] * keys(undefined) //=> [] * keys('') //=> [] * keys([]) //=> ['length'] */ export declare const symbols: >(value: T) => symbol[];