import * as React from 'react'; import { IFeedbackListProps } from './FeedbackList.types'; export interface IFeedbackListState { openIssues: IListItem[]; closedIssues: IListItem[]; } export interface IListItem { issueTitle: string; issueNum: number; issueCreated: string; } export declare class FeedbackListBase extends React.Component { private _classNames; private _isMounted; constructor(props: IFeedbackListProps); componentDidMount(): Promise; componentWillUnmount(): void; render(): JSX.Element | null; private _getIssues; private _onRenderCell; } export declare const FeedbackList: React.FunctionComponent;