import React from 'react'; import { IStatement } from '../../context'; interface IListProps { items: IStatement[]; onClick: (value: any) => void; onDelete: (ids: string[]) => void; actionStyle?: React.CSSProperties; group?: boolean; placeholder?: React.ReactNode; } export declare function convertTimestamps(timestamps: any): any; declare const StatementList: React.FunctionComponent; export default StatementList;