import { ensurePrefillFormDataExists } from './services/job-prefill'; import { SubmissionTypes } from '@oneblink/types'; /** * Get Jobs for the current user. Jobs that are in the pending queue will be * filtered out and Jobs with drafts will include the `draft` property. * * #### Example * * ```js * const formsAppId = 1 * const label = 'Applications' * const jobs = await jobService.getJobs(formsAppId, label) * ``` * * @param formsAppId * @param jobsLabel * @param abortSignal - Signal to abort the requests * @returns */ export declare function getJobs(formsAppId: number, jobsLabel: string, abortSignal?: AbortSignal): Promise; export { ensurePrefillFormDataExists };