import { ComponentType } from 'react'; import { RouterProps } from './withRouter'; export interface ThrottlingRouterProps extends RouterProps { onTransitionEnd: () => void; } /** * Смотри описание {@link useThrottlingLocation} * @param Component */ export declare function withThrottlingRouter(Component: ComponentType): ComponentType>;