import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' type FootnoteCopyShape = { close: string heading: string } export interface FootnoteProps extends HTMLAttrs { children?: ReactNode variant?: Variant copy?: 'en' | 'fr' | FootnoteCopyShape content?: string | ReactNode isOpen?: boolean number?: number onClose?: () => void tokens?: Record dictionary?: Record isMobileFullScreen?: boolean } export declare const Footnote: ComponentType