/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface SkeletonProps extends Omit, "width" | "height"> { variant?: "text" | "rectangle" | "circle"; /** CSS width. */ width?: string; /** CSS height. */ height?: string; } /** * Placeholder shape shown while content loads. * * @example * */ export declare const Skeleton: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Skeleton.d.ts.map