export interface LineClasses { /** Styles applied to the area element. */ area: string; /** Styles applied to the line element. */ line: string; /** Styles applied to the mark element. */ mark: string; /** Styles applied to a mark element when it is animated. */ markAnimate: string; /** Styles applied to the highlight element. */ highlight: string; /** Styles applied to the AreaPlot root element. */ areaPlot: string; /** Styles applied to the LinePlot root element. */ linePlot: string; /** Styles applied to the MarkPlot root element. */ markPlot: string; } export type LineClassKey = keyof LineClasses; export declare const lineClasses: LineClasses; export interface UseUtilityClassesOptions { skipAnimation?: boolean; classes?: Partial; } export declare const useUtilityClasses: (options?: UseUtilityClassesOptions) => Record<"area" | "areaPlot" | "highlight" | "line" | "linePlot" | "mark" | "markPlot", string>;