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; loading?: boolean; lang?: LangKeys; } & Partial; declare const History: React.FC; export default History;