import type { CredentialsParams } from "../../types/public"; import type { ApiScheduledJob } from "../../types/api/api-jobs"; /** * Get a specific scheduled job by ID. */ export declare function getScheduledJob(params: { /** * The namespace (username or organization name) */ namespace: string; /** * The scheduled job ID */ jobId: string; hubUrl?: string; /** * Custom fetch function to use instead of the default one, for example to use a proxy or edit headers. */ fetch?: typeof fetch; } & CredentialsParams): Promise; //# sourceMappingURL=get-scheduled-job.d.ts.map