import { OptionsType } from './options';
import Agenda from 'agenda';
import { Express } from 'express';
export interface ParamsType {
    publicUrl: string;
    mountPath: string;
    expressApp: Express;
    agenda: Agenda;
    options?: OptionsType;
}
export declare const mountAgendaAdmin: ({ publicUrl, mountPath, expressApp, agenda, options, }: ParamsType) => Promise<void>;
