import { NextFunction, Request, Response } from 'express';
interface RequestBodyType {
    name: string;
    repeatInterval?: string;
    schedule?: string;
    data?: Record<string, unknown>;
}
export declare const createNewJob: (req: Request<any, any, any, RequestBodyType>, res: Response, next: NextFunction) => Promise<void>;
export {};
