import type { RunbookRunResource } from "./runbookRunResource"; export declare class RunbookRunParameters { EnvironmentId?: string; EnvironmentIds?: string[]; ExcludedMachineIds: string[]; ForcePackageDownload: boolean; FormValues: any; ProjectId?: string; QueueTime?: string; QueueTimeExpiry?: string; RunbookId?: string; RunbookSnapshotNameOrId?: string; SkipActions: string[]; SpecificMachineIds: string[]; TenantId?: string; TenantIds?: string[]; TenantTagNames?: string[]; UseDefaultSnapshot: boolean; UseGuidedFailure?: boolean; static MapFrom(runbookRun: RunbookRunResource): RunbookRunParameters; }