import { type FC, type ReactNode } from 'react';
interface FootnotesProps {
    'children': ReactNode;
    'data-footnote-links'?: string;
    'data-footnotes'?: boolean;
}
declare const Footnotes: FC<FootnotesProps>;
export default Footnotes;
