export declare const SemanticSearchDefaultValues: { readonly resultThreshold: 50; readonly scoreThreshold: 0.2; readonly dynamicScorePercentage: 30; readonly namespace: "dev"; }; export declare const KeywordSearchDefaultValues: { readonly resultThreshold: 50; readonly scoreThreshold: 0.2; readonly dynamicScorePercentage: 30; readonly namespace: "dev"; }; export declare const Workflows: { addSubtitles: string; }; export declare const ApiPath: { readonly collection: "collection"; readonly upload: "upload"; readonly video: "video"; readonly audio: "audio"; readonly image: "image"; readonly stream: "stream"; readonly thumbnail: "thumbnail"; readonly thumbnails: "thumbnails"; readonly upload_url: "upload_url"; readonly transcription: "transcription"; readonly index: "index"; readonly search: "search"; readonly compile: "compile"; readonly workflow: "workflow"; readonly delete: "delete"; readonly describe: "describe"; readonly scene: "scene"; readonly scenes: "scenes"; readonly timeline: "timeline"; readonly frame: "frame"; readonly billing: "billing"; readonly usage: "usage"; readonly invoices: "invoices"; readonly storage: "storage"; readonly download: "download"; readonly title: "title"; readonly rtstream: "rtstream"; readonly status: "status"; readonly event: "event"; readonly alert: "alert"; readonly generate_url: "generate_url"; readonly generate: "generate"; readonly text: "text"; readonly web: "web"; readonly translate: "translate"; readonly dub: "dub"; readonly transcode: "transcode"; readonly meeting: "meeting"; readonly record: "record"; readonly reframe: "reframe"; readonly editor: "editor"; readonly clip: "clip"; readonly capture: "capture"; readonly session: "session"; readonly token: "token"; readonly websocket: "websocket"; readonly transcript: "transcript"; readonly sceneIndex: "scene_index"; readonly spokenIndex: "spoken_index"; readonly spoken: "spoken"; readonly start: "start"; readonly stop: "stop"; readonly export: "export"; }; export declare const ResponseStatus: { readonly processing: "processing"; readonly in_progress: "in progress"; readonly success: "success"; }; export declare const MeetingStatus: { readonly initializing: "initializing"; readonly processing: "processing"; readonly joined: "joined"; readonly done: "done"; }; export declare const Segmenter: { readonly time: "time"; readonly word: "word"; readonly sentence: "sentence"; }; export declare const SegmentationType: { readonly sentence: "sentence"; readonly llm: "llm"; }; export declare const ReframeMode: { readonly simple: "simple"; readonly smart: "smart"; }; export declare const ReframePreset: { readonly vertical: "vertical"; readonly square: "square"; readonly landscape: "landscape"; }; export declare const TranscodeMode: { readonly lightning: "lightning"; readonly economy: "economy"; }; export declare const ResizeMode: { readonly crop: "crop"; readonly fit: "fit"; readonly pad: "pad"; }; export declare const MediaType: { readonly video: "video"; readonly audio: "audio"; readonly image: "image"; }; export interface TextStyleConfig { fontsize?: number; fontcolor?: string; fontcolorExpr?: string; alpha?: number; font?: string; box?: boolean; boxcolor?: string; boxborderw?: string; boxw?: number; boxh?: number; lineSpacing?: number; textAlign?: string; yAlign?: string; borderw?: number; bordercolor?: string; expansion?: string; basetime?: number; fixBounds?: boolean; textShaping?: boolean; shadowcolor?: string; shadowx?: number; shadowy?: number; tabsize?: number; x?: string | number; y?: string | number; } export declare class TextStyle implements TextStyleConfig { fontsize: number; fontcolor: string; fontcolorExpr: string; alpha: number; font: string; box: boolean; boxcolor: string; boxborderw: string; boxw: number; boxh: number; lineSpacing: number; textAlign: string; yAlign: string; borderw: number; bordercolor: string; expansion: string; basetime: number; fixBounds: boolean; textShaping: boolean; shadowcolor: string; shadowx: number; shadowy: number; tabsize: number; x: string | number; y: string | number; constructor(config?: Partial); } export declare const HttpClientDefaultValues: { readonly max_retries: 3; readonly timeout: number; readonly backoff_factor: 0.1; }; export declare const MaxSupported: { fadeDuration: number; }; export declare const VIDEO_DB_API = "https://api.videodb.io"; export declare const PLAYER_URL = "https://console.videodb.io/player";