import { HTMLAttributes } from "react"; import "./font-swatch.scss"; export declare enum Category { BackgroundColor = "backgroundColor", BorderColor = "borderColor", Color = "color" } export interface FontSwatchProps { token: string; inverted?: boolean; category?: Category; contrastBorder?: boolean; gradientBackground?: boolean; invertedBackground?: boolean; exampleText?: string; } export declare const FontSwatchContextDefault: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const FontSwatchContext: import("react").Context & import("react").RefAttributes>>; export declare const FontSwatch: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;