/** * html/dotLeader — dotted leader line for label……value rows. * * Drop it between the label and the value inside an `Inline` row (print-fidelity * documents like statements or invoices): it grows to fill the gap and draws a * dotted rule nudged up to sit near the text baseline. Decorative only * (`aria-hidden`). * * The component lives here (html/ is the styling source of truth); the public * surface is the `dotLeader/` component module, mirroring html/layout.tsx. */ import { type HTMLAttributes } from "react"; import { type VariantProps } from "class-variance-authority"; export declare const dotLeaderVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string; export type DotLeaderProps = HTMLAttributes & VariantProps; export declare const DotLeader: import("react").ForwardRefExoticComponent & VariantProps<(props?: import("class-variance-authority/types").ClassProp | undefined) => string> & import("react").RefAttributes>; //# sourceMappingURL=dotLeader.d.ts.map