import type { theme } from "../tokens"; export type ColorsType = keyof typeof theme | "transparent" | "current"; export declare const getCSSVariableThemeColor: (colorThemeName: ColorsType) => string; export declare const getComputedThemeColor: (colorThemeName: ColorsType) => string; export declare const getA11yOnClick: (onClick: (e: React.MouseEvent | React.KeyboardEvent) => void) => { onClick: (e: React.MouseEvent | React.KeyboardEvent) => void; onKeyUp: (e: React.KeyboardEvent) => void; };