/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; /** Proportional bars visualising the container width tiers. */ export declare const ContainerScale: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScaleRow: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScaleLabel: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScaleCaption: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScaleTrack: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScalePx: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export declare const ContainerScaleAxis: import("preact").FunctionalComponent> & { ref?: import("preact").Ref | undefined; }>; export type ContainerScaleProps = JSX.HTMLAttributes; export type ContainerScaleRowProps = JSX.HTMLAttributes; export type ContainerScaleLabelProps = JSX.HTMLAttributes; export type ContainerScaleCaptionProps = JSX.HTMLAttributes; export type ContainerScaleTrackProps = JSX.HTMLAttributes; export type ContainerScalePxProps = JSX.HTMLAttributes; export type ContainerScaleAxisProps = JSX.HTMLAttributes; export interface ContainerScaleBarProps extends JSX.HTMLAttributes { /** Bar width, e.g. "60%" or "640px". */ width?: string; } /** A bar whose width is the tier it represents. */ export declare const ContainerScaleBar: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=ContainerScale.d.ts.map