/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; /** Auto-filling grid of colour swatches. */ export declare const SwatchGrid: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export type SwatchGridProps = JSX.HTMLAttributes; export interface SwatchProps extends JSX.HTMLAttributes { /** Token name, e.g. "blue-primary". */ name: string; /** Hex value, e.g. "#3B8EF6". */ hex: string; /** Background colour. */ background: string; /** Text colour. */ color: string; } /** One colour specimen with its name and hex. */ export declare const Swatch: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Swatch.d.ts.map