import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' type copyShape = { close: string heading: string } export interface FootnoteLinkProps extends HTMLAttrs { children: ReactNode number: number | string | [number] | [string] variant?: Variant copy?: 'en' | 'fr' | copyShape fontSize?: number | string onClick: MouseEvent } declare const FootnoteLink: ComponentType export default FootnoteLink