import * as React from 'react';
import { HistoryProps } from '../core/history/HistoryType';
import { ApiRefType } from '../core/useApiRef';
import { LangKeys } from '../../locale/Localization';
export type HistoryComponentProps = {
    apiRef: React.MutableRefObject<ApiRefType | null>;
    loading?: boolean;
    lang?: LangKeys;
} & Partial<HistoryProps>;
declare const History: React.FC<HistoryComponentProps>;
export default History;
