import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' type copyShape = { close: string heading: string } export interface FootnoteProps extends HTMLAttrs { children: ReactNode variant?: Variant copy?: 'en' | 'fr' | copyShape content?: string isOpen?: boolean number?: number onClose: boolean } declare const Footnote: ComponentType export default Footnote