interface Footnote {
    id: string;
    text: string;
}
interface Props {
    footnotes: Footnote[];
}
declare const FootnoteSection: import("svelte").Component<Props, {}, "">;
type FootnoteSection = ReturnType<typeof FootnoteSection>;
export default FootnoteSection;
