import { Observable } from 'rxjs';
import { ActionsObservable, Epic } from 'redux-observable';
import { Store } from 'redux';
import { AppState } from '../../common/reducers';
import { AuthenticatedAction } from '@lml/cosmo-ui-auth';
export declare const fetchJobLabelsOnAuthentication: (action$: ActionsObservable<AuthenticatedAction>, store: Store<AppState>) => Observable<any>;
export declare const fetchJobLabelsEpic: Epic<any, AppState, any>;
