import { QueuedProcess } from "../models/queued_process"; import { BaseCollection } from "./base_collection"; import { ProjectWithPagination } from "../interfaces/project_with_pagination"; import { PaginatedResult } from "../interfaces/paginated_result"; import { ProjectOnly } from "../interfaces/project_only"; export declare class QueuedProcesses extends BaseCollection { protected static rootElementName: string; protected static rootElementNameSingular: string; protected static prefixURI: string; protected static elementClass: typeof QueuedProcess; list(request_params: ProjectWithPagination): Promise>; get(process_id: string | number, request_params: ProjectOnly): Promise; }