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