import { JobLabelServiceCentreModel } from '@lml/cosmo-ts-data';
import { RootState } from '../../root';
export declare const getJobLabelServiceCentres: (state: RootState) => {
    [refId: string]: JobLabelServiceCentreModel;
};
export declare const getJobLabelServiceCentreByCode: (state: RootState, code: string) => JobLabelServiceCentreModel;
export declare const getJobLabelServiceCentreArray: ((state: RootState) => JobLabelServiceCentreModel[]) & {
    resultFunc: (res: {
        [refId: string]: JobLabelServiceCentreModel;
    }) => JobLabelServiceCentreModel[];
    recomputations: () => number;
    resetRecomputations: () => number;
};
export declare const getServiceCentresByRegion: ((state: RootState) => {}) & {
    resultFunc: (res: JobLabelServiceCentreModel[]) => {};
    recomputations: () => number;
    resetRecomputations: () => number;
};
