/** * Aligner is a utility used across multiple components to apply * negative margin based on the component padding to align its text content * visually with the rest of the page * * It relies on using a data-rs-aligner-target attribute in other components and works based * on the --rs-p, --rs-p-v and --rs-p-h css variables */ import type * as T from "./Aligner.types"; declare const Aligner: React.FC; export default Aligner;