export default ActiveDebates; declare function ActiveDebates({ discussions, t, CommentLink, DiscussionLink, children }: { discussions: any; t: any; CommentLink: any; DiscussionLink: any; children: any; }): JSX.Element; declare namespace ActiveDebates { namespace propTypes { const discussions: PropTypes.Requireable; const children: PropTypes.Requireable; } namespace data { namespace config { function options({ lastDays, first, featured }: { lastDays?: number; first?: number; featured?: number; }): { variables: { lastDays: number; first: number; featured: number; }; ssr: boolean; }; function props({ data, ownProps: { first } }: { data: any; ownProps: { first?: number; }; }): { data: { loading: any; error: any; discussions: any; }; }; } const query: string; } } import PropTypes from "prop-types";