/**
 * Returns an `Intl.Collator` for the active provider locale, memoized across
 * renders where the locale and options object are unchanged.
 *
 * @example
 * ```
 * const collator = useCollator({numeric: true});
 * const sorted = [...items].sort((a, b) => collator.compare(a.name, b.name));
 * ```
 */
export declare function useCollator(options?: Intl.CollatorOptions): Intl.Collator;
//# sourceMappingURL=useCollator.d.ts.map