import type { UxpWebSocketBridge } from "../bridge/uxp-websocket-bridge.js"; export declare function getUxpTools(bridge: UxpWebSocketBridge): { get_uxp_capabilities: { description: string; parameters: {}; handler: () => Promise<{ success: boolean; data: import("../bridge/uxp-websocket-bridge.js").UxpConnectionState; }>; }; get_uxp_state: { description: string; parameters: {}; handler: () => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; inspect_project_uxp: { description: string; parameters: {}; handler: () => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; save_project_uxp: { description: string; parameters: { type: "object"; properties: { operation_id: { type: "string"; description: string; }; }; }; handler: (args: { operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; create_sequence_with_preset_uxp: { description: string; parameters: { type: "object"; properties: { name: { type: string; description: string; }; preset_path: { type: string; description: string; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { name: string; preset_path: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; export_interchange_uxp: { description: string; parameters: { type: "object"; properties: { format: { type: string; enum: string[]; description: string; }; output_file_path: { type: string; description: string; }; suppress_ui: { type: string; description: string; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { format: "otio" | "fcpxml"; output_file_path: string; suppress_ui?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; get_transcript_languages_uxp: { description: string; parameters: {}; handler: () => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; get_clip_transcript_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; }; }; handler: (args: { project_item_id?: string; project_item_name?: string; }) => Promise<{ success: boolean; data: { backend: string; result: { transcriptRevision: string; json?: unknown; }; }; error?: undefined; } | { success: boolean; error: string; data?: undefined; }>; }; search_clip_transcript_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; query: { type: string; minLength: number; maxLength: number; description: string; }; case_sensitive: { type: string; description: string; }; max_results: { type: string; minimum: number; maximum: number; description: string; }; }; required: string[]; }; handler: (args: { project_item_id?: string; project_item_name?: string; query: string; case_sensitive?: boolean; max_results?: number; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; preview_transcript_edit_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; transcript_revision: { type: string; pattern: string; description: string; }; deletions: { type: string; minItems: number; maxItems: number; items: { type: string; additionalProperties: boolean; properties: { start_seconds: { type: string; minimum: number; }; end_seconds: { type: string; exclusiveMinimum: number; }; }; required: string[]; }; description: string; }; handle_seconds: { type: string; minimum: number; maximum: number; description: string; }; }; required: string[]; }; handler: (args: { project_item_id?: string; project_item_name?: string; transcript_revision: string; deletions: unknown; handle_seconds?: number; }) => Promise<{ success: boolean; data: { backend: string; result: { transcriptRevision: string; deletionRanges: import("./transcript-edits.js").TranscriptDeletionRange[]; deletedSeconds: number; confirmationToken: string; applied: false; projectItemId: unknown; projectItemName: unknown; }; }; error?: undefined; } | { success: boolean; error: string; data?: undefined; }>; }; plan_transcript_rough_cut_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; }; project_item_name: { type: string; maxLength: number; }; transcript_revision: { type: string; pattern: string; }; deletions: { type: string; minItems: number; maxItems: number; items: { type: string; additionalProperties: boolean; properties: { start_seconds: { type: string; minimum: number; }; end_seconds: { type: string; exclusiveMinimum: number; }; }; required: string[]; }; }; placements: { type: string; minItems: number; maxItems: number; description: string; items: { type: string; additionalProperties: boolean; properties: { placement_id: { type: string; minLength: number; maxLength: number; }; track_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; source_in_seconds: { type: string; minimum: number; }; source_out_seconds: { type: string; exclusiveMinimum: number; }; timeline_start_seconds: { type: string; minimum: number; }; timeline_end_seconds: { type: string; exclusiveMinimum: number; }; }; required: string[]; }; }; handle_seconds: { type: string; minimum: number; maximum: number; }; ripple: { type: string; description: string; }; }; required: string[]; }; handler: (args: { project_item_id?: string; project_item_name?: string; transcript_revision: string; deletions: unknown; placements: unknown; handle_seconds?: number; ripple?: boolean; }) => Promise<{ success: boolean; data: { backend: string; result: { planVersion: 1; requiresDuplicateSequence: true; requiresPostMutationRequery: true; ripple: boolean; steps: import("./transcript-edits.js").TranscriptRoughCutStep[]; unmappedDeletionRanges: import("./transcript-edits.js").TranscriptDeletionRange[]; transcriptRevision: string; deletionRanges: import("./transcript-edits.js").TranscriptDeletionRange[]; deletedSeconds: number; confirmationToken: string; applied: false; projectItemId: unknown; projectItemName: unknown; }; }; error?: undefined; } | { success: boolean; error: string; data?: undefined; }>; }; detect_object_masks_uxp: { description: string; parameters: { type: "object"; properties: { scope: { type: string; enum: string[]; description: string; }; }; }; handler: (args: { scope?: "sequence" | "project"; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; configure_encoder_uxp: { description: string; parameters: { type: "object"; properties: { launch: { type: string; description: string; }; embedded_xmp: { type: string; description: string; }; sidecar_xmp: { type: string; description: string; }; start_batch: { type: string; description: string; }; operation_id: { type: "string"; description: string; }; }; }; handler: (args: { launch?: boolean; embedded_xmp?: boolean; sidecar_xmp?: boolean; start_batch?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; rename_track_uxp: { description: string; parameters: { type: "object"; properties: { track_type: { type: string; enum: string[]; description: string; }; track_index: { type: string; minimum: number; description: string; }; name: { type: string; minLength: number; maxLength: number; description: string; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { track_type: "audio" | "video" | "caption"; track_index: number; name: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; create_subclip_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; name: { type: string; minLength: number; maxLength: number; description: string; }; start_seconds: { type: string; minimum: number; description: string; }; end_seconds: { type: string; exclusiveMinimum: number; description: string; }; hard_boundaries: { type: string; description: string; }; take_video: { type: string; description: string; }; take_audio: { type: string; description: string; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { project_item_id?: string; project_item_name?: string; name: string; start_seconds: number; end_seconds: number; hard_boundaries?: boolean; take_video?: boolean; take_audio?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; list_markers_uxp: { description: string; parameters: { type: "object"; properties: { scope: { type: string; enum: string[]; description: string; }; project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; filters: { type: string; maxItems: number; items: { type: string; minLength: number; maxLength: number; }; description: string; }; }; }; handler: (args: { scope?: "sequence" | "project_item"; project_item_id?: string; project_item_name?: string; filters?: string[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; set_source_monitor_position_uxp: { description: string; parameters: { type: "object"; properties: { seconds: { type: string; minimum: number; description: string; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { seconds: number; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; has_transcript_uxp: { description: string; parameters: { type: "object"; properties: { project_item_id: { type: string; maxLength: number; description: string; }; project_item_name: { type: string; maxLength: number; description: string; }; }; }; handler: (args: { project_item_id?: string; project_item_name?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; export_aaf_uxp: { description: string; parameters: { type: "object"; properties: { output_file_path: { type: string; minLength: number; maxLength: number; description: string; }; options: { type: string; additionalProperties: boolean; properties: { mixdown_video: { type: string; }; explode_to_mono: { type: string; }; sample_rate: { type: string; enum: number[]; }; bits_per_sample: { type: string; enum: number[]; }; embed_audio: { type: string; }; audio_file_format: { type: string; enum: string[]; }; trim_sources: { type: string; }; handle_frames: { type: string; minimum: number; maximum: number; }; video_mixdown_preset_path: { type: string; minLength: number; maxLength: number; }; render_audio_effects: { type: string; }; interleave_without_effects: { type: string; }; preserve_parent_folder: { type: string; }; }; }; operation_id: { type: "string"; description: string; }; }; required: string[]; }; handler: (args: { output_file_path: string; options?: { mixdown_video?: boolean; explode_to_mono?: boolean; sample_rate?: 32000 | 44100 | 48000 | 88200 | 96000; bits_per_sample?: 16 | 24 | 32; embed_audio?: boolean; audio_file_format?: "aiff" | "wav"; trim_sources?: boolean; handle_frames?: number; video_mixdown_preset_path?: string; render_audio_effects?: boolean; interleave_without_effects?: boolean; preserve_parent_folder?: boolean; }; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; export_frame_uxp: { description: string; parameters: { type: "object"; properties: { output_directory: { type: string; description: string; }; filename: { type: string; description: string; }; seconds: { type: string; description: string; }; width: { type: string; description: string; }; height: { type: string; description: string; }; }; required: string[]; }; handler: (args: { output_directory: string; filename: string; seconds?: number; width?: number; height?: number; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_clip_effects_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; media_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; clip_index: { type: string; minimum: number; }; effect_id: { type: string; minLength: number; maxLength: number; description: string; }; insertion_index: { type: string; minimum: number; }; component_index: { type: string; minimum: number; }; expected_effect_id: { type: string; minLength: number; maxLength: number; description: string; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; batch_selected_clips_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; media_type: { type: string; enum: string[]; }; effect_id: { type: string; minLength: number; maxLength: number; }; insertion_index: { type: string; minimum: number; }; component_index: { type: string; minimum: number; }; expected_effect_id: { type: string; minLength: number; maxLength: number; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_timeline_selection_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; selection_targets: { type: string; minItems: number; maxItems: number; description: string; items: { type: string; additionalProperties: boolean; properties: { media_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; clip_index: { type: string; minimum: number; }; }; required: string[]; }; }; expected_sequence_guid: { type: string; minLength: number; maxLength: number; description: string; }; selection_items: { type: string; minItems: number; maxItems: number; description: string; items: { type: string; additionalProperties: boolean; properties: { media_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; clip_index: { type: string; minimum: number; }; expected_project_item_id: { type: string; minLength: number; maxLength: number; }; expected_start_seconds: { type: string; minimum: number; }; expected_end_seconds: { type: string; minimum: number; }; }; required: string[]; }; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; detect_scene_edits_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { mode: { type: string; enum: string[]; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_proxy_ingest_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { media_path: { type: string; minLength: number; maxLength: number; }; is_high_resolution: { type: string; description: string; }; make_alternate_link_in_team_projects: { type: string; }; replace_existing_proxy: { type: string; description: string; }; enabled: { type: string; }; confirm_non_undoable: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_name: { type: string; minLength: number; maxLength: number; description: string; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; relink_offline_media_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { new_path: { type: string; minLength: number; maxLength: number; }; expected_current_path: { type: string; minLength: number; maxLength: number; }; override_compatibility_check: { type: string; }; require_offline: { type: string; description: string; }; confirm_non_undoable: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_name: { type: string; minLength: number; maxLength: number; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_metadata_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { project_metadata: { type: string; maxLength: number; description: string; }; xmp_metadata: { type: string; maxLength: number; description: string; }; updated_fields: { type: string; minItems: number; maxItems: number; items: { type: string; minLength: number; maxLength: number; }; }; operation_id: { type: string; pattern: string; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_name: { type: string; minLength: number; maxLength: number; description: string; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_color_conformance_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { frame_rate: { type: string; minimum: number; maximum: number; }; pixel_aspect_ratio: { type: string; minimum: number; maximum: number; }; field_type: { type: string; minimum: number; maximum: number; }; remove_pulldown: { type: string; }; alpha_usage: { type: string; minimum: number; maximum: number; }; ignore_alpha: { type: string; }; invert_alpha: { type: string; }; vr_conform: { type: string; minimum: number; maximum: number; }; vr_layout: { type: string; minimum: number; maximum: number; }; vr_horizontal_view: { type: string; minimum: number; maximum: number; }; vr_vertical_view: { type: string; minimum: number; maximum: number; }; input_lut_id: { type: string; maxLength: number; }; operation_id: { type: string; pattern: string; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_name: { type: string; minLength: number; maxLength: number; description: string; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; audition_source_monitor_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { file_path: { type: string; minLength: number; maxLength: number; }; seconds: { type: string; minimum: number; }; speed: { type: string; minimum: number; maximum: number; }; operation_id: { type: string; pattern: string; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_name: { type: string; minLength: number; maxLength: number; description: string; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; preflight_production_storage_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; folder_types: { type: string; minItems: number; maxItems: number; uniqueItems: boolean; items: { type: string; enum: string[]; }; }; destination: { type: string; enum: string[]; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: { action?: string; media_type?: string; track_index?: number; clip_index?: number; effect_id?: string; insertion_index?: number; component_index?: number; expected_effect_id?: string; mode?: string; project_item_id?: string; project_item_name?: string; media_path?: string; is_high_resolution?: boolean; make_alternate_link_in_team_projects?: boolean; replace_existing_proxy?: boolean; enabled?: boolean; confirm_non_undoable?: boolean; new_path?: string; expected_current_path?: string; override_compatibility_check?: boolean; require_offline?: boolean; project_metadata?: string; xmp_metadata?: string; updated_fields?: string[]; frame_rate?: number; pixel_aspect_ratio?: number; field_type?: number; remove_pulldown?: boolean; alpha_usage?: number; ignore_alpha?: boolean; invert_alpha?: boolean; vr_conform?: number; vr_layout?: number; vr_horizontal_view?: number; vr_vertical_view?: number; input_lut_id?: string; file_path?: string; seconds?: number; speed?: number; folder_types?: string[]; destination?: string; operation_id?: string; expected_sequence_guid?: string; selection_items?: { media_type?: string; track_index?: number; clip_index?: number; expected_project_item_id?: string; expected_start_seconds?: number; expected_end_seconds?: number; }[]; selection_targets?: { media_type?: string; track_index?: number; clip_index?: number; }[]; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; get_uxp_workspace_access: { description: string; parameters: {}; handler: () => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; inspect_project_selection_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; view_id: { type: string; minLength: number; maxLength: number; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_markers_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; owner_type: { type: string; enum: string[]; }; sequence_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; marker_guid: { type: string; minLength: number; maxLength: number; }; expected_name: { type: string; maxLength: number; description: string; }; name: { type: string; minLength: number; maxLength: number; }; marker_type: { type: string; minLength: number; maxLength: number; }; start_seconds: { type: string; minimum: number; maximum: number; }; duration_seconds: { type: string; minimum: number; maximum: number; }; comments: { type: string; maxLength: number; }; color_index: { type: string; minimum: number; maximum: number; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; organize_project_items_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; bin_id: { type: string; minLength: number; maxLength: number; description: string; }; parent_bin_id: { type: string; minLength: number; maxLength: number; description: string; }; destination_bin_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; expected_name: { type: string; maxLength: number; }; expected_parent_id: { type: string; maxLength: number; }; name: { type: string; minLength: number; maxLength: number; }; make_unique: { type: string; }; search_query: { type: string; minLength: number; maxLength: number; }; color_index: { type: string; minimum: number; maximum: number; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_sequence_settings_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; sequence_id: { type: string; minLength: number; maxLength: number; description: string; }; updates: { type: string; additionalProperties: boolean; properties: { maximum_bit_depth: { type: string; }; maximum_render_quality: { type: string; }; composite_in_linear_color: { type: string; }; audio_sample_rate: { type: string; minimum: number; maximum: number; }; video_frame_rate: { type: string; minimum: number; maximum: number; }; video_field_type: { type: string; minimum: number; maximum: number; }; video_pixel_aspect_ratio: { type: string; minLength: number; maxLength: number; }; editing_mode: { type: string; minLength: number; maxLength: number; }; preview_file_format: { type: string; minLength: number; maxLength: number; }; preview_codec: { type: string; minLength: number; maxLength: number; }; video_width: { type: string; minimum: number; maximum: number; }; video_height: { type: string; minimum: number; maximum: number; }; }; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; import_project_media_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; paths: { type: string; minItems: number; maxItems: number; items: { type: string; minLength: number; maxLength: number; }; }; project_path: { type: string; minLength: number; maxLength: number; }; sequence_ids: { type: string; minItems: number; maxItems: number; items: { type: string; minLength: number; maxLength: number; }; }; aep_path: { type: string; minLength: number; maxLength: number; }; comp_names: { type: string; minItems: number; maxItems: number; items: { type: string; minLength: number; maxLength: number; }; }; target_bin_id: { type: string; minLength: number; maxLength: number; description: string; }; suppress_ui: { type: string; }; as_numbered_stills: { type: string; }; confirm_non_undoable: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; automate_effect_parameters_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { component_index: { type: string; minimum: number; }; param_index: { type: string; minimum: number; }; expected_component_id: { type: string; minLength: number; maxLength: number; }; expected_param_name: { type: string; maxLength: number; }; value: { type: string[]; }; time_seconds: { type: string; minimum: number; maximum: number; }; end_seconds: { type: string; minimum: number; maximum: number; }; interpolation: { type: string; enum: string[]; }; operation_id: { type: string; pattern: string; description: string; }; media_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; clip_index: { type: string; minimum: number; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; transform_track_item_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { expected_start_seconds: { type: string; minimum: number; maximum: number; }; expected_end_seconds: { type: string; minimum: number; maximum: number; }; move_by_seconds: { type: string; minimum: number; maximum: number; }; start_seconds: { type: string; minimum: number; maximum: number; }; end_seconds: { type: string; minimum: number; maximum: number; }; in_seconds: { type: string; minimum: number; maximum: number; }; out_seconds: { type: string; minimum: number; maximum: number; }; disabled: { type: string; }; name: { type: string; minLength: number; maxLength: number; }; operation_id: { type: string; pattern: string; description: string; }; media_type: { type: string; enum: string[]; }; track_index: { type: string; minimum: number; }; clip_index: { type: string; minimum: number; }; action: { type: string; enum: string[]; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; edit_timeline_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { limit_shift: { type: string; }; time_offset_seconds: { type: string; minimum: number; maximum: number; }; video_track_offset: { type: string; minimum: number; maximum: number; }; audio_track_offset: { type: string; minimum: number; maximum: number; }; align_to_video: { type: string; }; insert: { type: string; }; ripple: { type: string; }; media_type: { type: string; enum: string[]; }; shift_overlapping: { type: string; }; file_path: { type: string; minLength: number; maxLength: number; }; library_name: { type: string; minLength: number; maxLength: number; }; element_name: { type: string; minLength: number; maxLength: number; }; confirm_non_undoable: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; time_seconds: { type: string; minimum: number; maximum: number; }; video_track_index: { type: string; minimum: number; }; audio_track_index: { type: string; minimum: number; }; action: { type: string; enum: string[]; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_sequences_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; sequence_id: { type: string; minLength: number; maxLength: number; description: string; }; expected_name: { type: string; maxLength: number; }; name: { type: string; minLength: number; maxLength: number; }; project_item_ids: { type: string; minItems: number; maxItems: number; items: { type: string; minLength: number; maxLength: number; description: string; }; }; target_bin_id: { type: string; minLength: number; maxLength: number; description: string; }; ignore_track_targeting: { type: string; }; confirm_non_undoable: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; encode_media_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; job_id: { type: string; pattern: string; }; timeout_ms: { type: string; minimum: number; maximum: number; }; limit: { type: string; minimum: number; maximum: number; }; sequence_id: { type: string; minLength: number; maxLength: number; description: string; }; project_item_id: { type: string; minLength: number; maxLength: number; description: string; }; export_type: { type: string; enum: string[]; }; file_path: { type: string; minLength: number; maxLength: number; }; output_file: { type: string; minLength: number; maxLength: number; }; preset_file: { type: string; minLength: number; maxLength: number; }; export_full: { type: string; }; in_seconds: { type: string; minimum: number; maximum: number; }; out_seconds: { type: string; minimum: number; maximum: number; }; work_area: { type: string; minimum: number; maximum: number; }; remove_upon_completion: { type: string; }; start_queue_immediately: { type: string; }; confirm_external_write: { type: string; }; operation_id: { type: string; pattern: string; description: string; }; }; required: string[]; }; handler: (args: Record & { action?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; inspect_premiere_events_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; after_revision: { type: string; minimum: number; maximum: number; }; categories: { type: string; maxItems: number; uniqueItems: boolean; items: { type: string; pattern: string; }; }; event_names: { type: string; maxItems: number; uniqueItems: boolean; items: { type: string; pattern: string; }; }; limit: { type: string; minimum: number; maximum: number; }; timeout_ms: { type: string; minimum: number; maximum: number; description: string; }; }; required: string[]; }; handler: (args: { action?: string; after_revision?: number; categories?: string[]; event_names?: string[]; limit?: number; timeout_ms?: number; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; wait_for_host_readiness_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; sequence_id: { type: string; pattern: string; }; expected_sequence_id: { type: string; pattern: string; }; operation_type: { type: string; enum: string[]; }; after_revision: { type: string; minimum: number; maximum: number; description: string; }; timeout_ms: { type: string; minimum: number; maximum: number; }; poll_min_ms: { type: string; minimum: number; maximum: number; }; poll_max_ms: { type: string; minimum: number; maximum: number; }; }; required: string[]; }; handler: (args: { action?: string; sequence_id?: string; expected_sequence_id?: string; operation_type?: string; after_revision?: number; timeout_ms?: number; poll_min_ms?: number; poll_max_ms?: number; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_project_sessions_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; project_id: { type: string; pattern: string; }; expected_path: { type: string; minLength: number; maxLength: number; }; path: { type: string; minLength: number; maxLength: number; }; paths: { type: string; minItems: number; maxItems: number; uniqueItems: boolean; items: { type: string; minLength: number; maxLength: number; }; }; include_paths: { type: string; description: string; }; show_dialogs: { type: string; description: string; }; add_to_mru: { type: string; description: string; }; save_before_close: { type: string; description: string; }; confirm_external_write: { type: string; }; confirm_overwrite: { type: string; }; confirm_close: { type: string; }; confirm_discard_unsaved: { type: string; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; project_id?: string; expected_path?: string; path?: string; paths?: string[]; include_paths?: boolean; show_dialogs?: boolean; add_to_mru?: boolean; save_before_close?: boolean; confirm_external_write?: boolean; confirm_overwrite?: boolean; confirm_close?: boolean; confirm_discard_unsaved?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_growing_media_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; project_id: { type: string; pattern: string; }; expected_path: { type: string; minLength: number; maxLength: number; }; lease_ms: { type: string; minimum: number; maximum: number; }; confirm_pause: { type: string; description: string; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; project_id?: string; expected_path?: string; lease_ms?: number; confirm_pause?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_workflow_checkpoints_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; owner: { type: string; enum: string[]; }; sequence_id: { type: string; pattern: string; }; expected_owner_id: { type: string; pattern: string; }; name: { type: string; pattern: string; }; value_type: { type: string; enum: string[]; }; value: { type: string[]; maxLength: number; }; persistence: { type: string; enum: string[]; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; owner?: string; sequence_id?: string; expected_owner_id?: string; name?: string; value_type?: string; value?: string | number | boolean; persistence?: string; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; maintain_media_health_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; project_item_ids: { type: string; minItems: number; maxItems: number; uniqueItems: boolean; items: { type: string; minLength: number; maxLength: number; }; }; project_item_id: { type: string; minLength: number; maxLength: number; }; expected_offline: { type: string; }; confirm_set_offline: { type: string; }; match_path: { type: string; minLength: number; maxLength: number; }; ignore_subclips: { type: string; }; include_paths: { type: string; description: string; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; project_item_ids?: string[]; project_item_id?: string; expected_offline?: boolean; confirm_set_offline?: boolean; match_path?: string; ignore_subclips?: boolean; include_paths?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_track_state_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; sequence_id: { type: string; pattern: string; }; expected_sequence_id: { type: string; pattern: string; }; media_type: { type: string; enum: string[]; }; track_indices: { type: string; minItems: number; maxItems: number; uniqueItems: boolean; items: { type: string; minimum: number; maximum: number; }; }; muted: { type: string; }; expected_muted: { type: string; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; sequence_id?: string; expected_sequence_id?: string; media_type?: string; track_indices?: number[]; muted?: boolean; expected_muted?: boolean; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; manage_source_clip_uxp: { description: string; parameters: { type: "object"; additionalProperties: boolean; properties: { action: { type: string; enum: string[]; }; items: { type: string; minItems: number; maxItems: number; items: { type: string; additionalProperties: boolean; properties: { project_item_id: { type: string; minLength: number; maxLength: number; }; media_type: { type: string; enum: string[]; }; expected_in_seconds: { type: string; minimum: number; maximum: number; }; expected_out_seconds: { type: string; minimum: number; maximum: number; }; in_seconds: { type: string; minimum: number; maximum: number; }; out_seconds: { type: string; minimum: number; maximum: number; }; clear_in_out: { type: string; }; scale_to_frame: { type: string; enum: boolean[]; }; }; required: string[]; }; }; operation_id: { type: string; pattern: string; }; }; required: string[]; }; handler: (args: { action?: string; items?: { project_item_id?: string; media_type?: string; expected_in_seconds?: number; expected_out_seconds?: number; in_seconds?: number; out_seconds?: number; clear_in_out?: boolean; scale_to_frame?: boolean; }[]; operation_id?: string; }) => Promise<{ success: boolean; data: { backend: string; result: unknown; }; } | { success: boolean; error: string; }>; }; }; //# sourceMappingURL=uxp.d.ts.map