/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface ContainerProps extends JSX.HTMLAttributes { /** Max-width tier. */ size?: "narrow" | "default" | "wide" | "full"; /** Element to render, e.g. "main". */ as?: keyof JSX.IntrinsicElements; } /** * Centered max-width wrapper. * * @example *

Prose

*/ export declare const Container: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Container.d.ts.map