import type { ColorStructure } from '../types/tokens.js'; export type ColorFormat = 'hex/rgba' | 'oklch' | 'hex-aarrggbb'; export declare function convertColorFormat(obj: ColorStructure, format?: ColorFormat): ColorStructure; export declare const formatOklch: ({ l, c, h, alpha }: { l: number; c: number; h?: number; alpha?: number; }) => string;