import './HistoryComponent.scss'; import React from 'react'; import { IHistory } from '@wix/quix-shared'; import { User } from '../../lib/app/services/user'; export interface HistoryProps { error: { message: string; }; user: User; onHistoryClicked(history: IHistory): void; loadMore({ offset, limit, filters }: { offset: number; limit: number; filters: object; }): Promise; getUsers(): User[]; } export declare const CHUNK_SIZE = 100; export declare function History(props: HistoryProps): React.JSX.Element;