import type { StateStore } from '../state/store'; import { type DashboardScope, type RunSnapshotCache } from './loader'; import type { QueueRecord } from './types'; export declare function enqueueQueueRequest(options: { state: StateStore; cache?: RunSnapshotCache; scope: DashboardScope; title: string; description?: string; }): Promise;