/**
 * Tracks the state of a `Set`.
 *
 * @param values Initial values iterator for underlying `Set` constructor.
 */
export declare function useSet<T = any>(values?: readonly T[] | null): Set<T>;
