export declare type StatusType = "active" | "inactive" | "caution" | "error"; export declare type Resolution = { width: number; height: number; }; export declare type APICaptureStatus = { status: StatusType; capture_time: string; status_description: string; }; export declare type APIDiskCaptureSettings = { file_location: string; encoding?: string; resolution: Resolution; frame_rate: string; }; export declare type APIRTMPCaptureSettings = { url: string; key: string; encoding: string; save_local: boolean; file_location?: string; }; export declare type APIResiCaptureSettings = { event_name?: string; event_description?: string; destination_group: string; encoding: string; }; export declare type APICaptureSettings = { source: string; audio_routing: [number[]]; disk?: APIDiskCaptureSettings; rtmp?: APIRTMPCaptureSettings; resi?: APIResiCaptureSettings; }; //# sourceMappingURL=capture.d.ts.map