/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; /** Spacing, radius and shadow token specimens. */ export declare const TokenSpecimenGrid: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const TokenSpecimen: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export type TokenSpecimenGridProps = JSX.HTMLAttributes; export type TokenSpecimenProps = JSX.HTMLAttributes; export interface TokenSpecimenSpacerProps extends JSX.HTMLAttributes { /** Bar width, a CSS length or a pixel number. */ width?: string | number; } /** A bar sized to a spacing token. */ export declare const TokenSpecimenSpacer: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; export interface TokenSpecimenBoxProps extends JSX.HTMLAttributes { /** Border radius, e.g. "8px". */ radius?: string; /** Box shadow, for elevation specimens. */ shadow?: string; } /** A box carrying a radius or elevation token. */ export declare const TokenSpecimenBox: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=TokenSpecimen.d.ts.map