import * as React from 'react';

interface FootnoteProps {
  className?: string;
  dataHook?: string;
  footnote?: React.ReactNode;
}

export const Footnote: React.FunctionComponent<FootnoteProps>;
