import type { ReactNode } from 'react'; declare const TONE_CLASS: { /** Consent rows: the accent, as every form's policy links draw it. */ readonly accent: "text-ods-accent underline underline-offset-2 hover:text-ods-accent/80"; /** Quiet copy (the sign-up agreement line): secondary text, plain underline. */ readonly secondary: "text-ods-text-secondary underline"; }; /** * A link to a policy page inside consent copy (Terms, Privacy) — opens in a * new tab and does NOT toggle the checkbox whose label it sits in. */ export declare function PolicyLink({ href, tone, children, }: { href: string; tone?: keyof typeof TONE_CLASS; children: ReactNode; }): import("react").JSX.Element; export {}; //# sourceMappingURL=policy-link.d.ts.map