import { AxiosInstance } from "axios"; import { Resource } from "../Resource"; export type LiveVideoRequest = { clientId?: string | null; data: string; }; export type LiveVideo = { id: string; clientId: string; language: string; challenges: object[]; createdAt: string; updateAt: string; }; export declare class LiveVideos extends Resource { constructor(axiosInstance: AxiosInstance); get(id: string): Promise; redact(id: string): Promise; delete(id: string): Promise; list(clientId: string, { page, pageSize }?: { page?: number; pageSize?: number; }): Promise; }