/**
 * FootNote module.
 * @module @massds/mayflower-react/FootNote
 * @requires module:@massds/mayflower-assets/scss/01-atoms/footnote
 */
import React from 'react';
export interface FootNoteProps {
    /** Pair the FootNote molecule with the FootNoteLink.
    The number/index of the footnote item.
    If this is the second footnote on the page, `i` would be 2. */
    index?: string;
    children?: React.ReactNode;
}
declare class FootNote extends React.Component<FootNoteProps> {
    handleScroll(): void;
    render(): any;
}
export default FootNote;
