` attribute. */ citeUrl?: string; /** Rule-bracketed treatment: hairlines above and below. Default `false`. */ rule?: boolean; children?: ReactNode; } /** * A pull quote — the oversized line lifted out of body copy, with optional * attribution and a rule-bracketed treatment. * * Twelve gallery styles build one. The reason this is a component rather than a * class is the same reason `` renders a real ``: of the eight quote * elements in those styles, **one** was a `` — five were `` and * two were `
` — and **none** used `` for the attribution. They all * look right and none of them says what it is. * * `citeUrl` maps to ``, which is the attribute's actual job * (the source URL) and is routinely confused with the visible `` element * (the work's title). Keeping them as separate props stops the two collapsing * into one another. */ declare const PullQuote: react.ForwardRefExoticComponent>; export { PullQuote, type PullQuoteProps };