import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' type FootnoteLinkCopyShape = { close: string heading: string } export interface FootnoteLinkProps extends HTMLAttrs { children: ReactNode number: number | string | Array | Array variant?: Variant copy?: 'en' | 'fr' | FootnoteLinkCopyShape fontSize?: number | string onClick?: (event: React.MouseEvent) => void } export declare const FootnoteLink: ComponentType