import React from "react"; import "./index.less"; interface Props { hasNextPage: boolean; endOfListMessage?: string; hasNextPageMessage?: string; loading?: boolean; } export declare const Footer: ({ loading, hasNextPage, hasNextPageMessage, endOfListMessage }: Props) => React.JSX.Element; export {};