import { AppState } from '../../common/reducers';
import { LocationChangeAction } from 'react-router-redux';
export declare const getPathname: (state: AppState) => string;
export declare const getPaths: ((state: AppState) => string[]) & {
    resultFunc: (res: string) => string[];
    recomputations: () => number;
    resetRecomputations: () => number;
};
export declare const getAllocationPage: ((state: AppState) => string) & {
    resultFunc: (res: string[]) => string;
    recomputations: () => number;
    resetRecomputations: () => number;
};
export declare const getPageFromAction: (action: LocationChangeAction) => string;
export declare const isManualAllocationRoute: ((state: AppState) => boolean) & {
    resultFunc: (res: string[]) => boolean;
    recomputations: () => number;
    resetRecomputations: () => number;
};
