import { JobModel } from '@lml/cosmo-ts-data';
import { JobFormType } from '../actions';
/**
 * Create the request body for editing or posting a job
 * Right now you can either clone or edit, but in the future
 * there may be other types as well
 */
export declare const mkJobRequestBody: (form: any, jobFormType: JobFormType, baseJob?: JobModel) => any;
