import type { ChartColorsAPI } from './getChartColors';
/**
 * Theme-aware chart colors. Resolves data-viz tokens from the current
 * theme context — respects light/dark mode and custom themes.
 *
 * @example
 * ```
 * const colors = useChartColors();
 * colors.categorical(5)
 * colors.sequential.blue(3)
 * colors.diverging.positiveNegative(5)
 * colors.alpha('#0171E3', 0.5)
 * ```
 */
export declare function useChartColors(): ChartColorsAPI;
//# sourceMappingURL=useChartColors.d.ts.map