import type { CredentialsParams } from "../../types/public";
import type { ApiJob } from "../../types/api/api-jobs";
/**
 * List jobs for a namespace (user or organization).
 */
export declare function listJobs(params: {
    /**
     * The namespace (username or organization name)
     */
    namespace: 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<ApiJob[]>;
//# sourceMappingURL=list-jobs.d.ts.map