import type { BaseClientOptions } from "../../../../BaseClient"; import { type NormalizedClientOptions } from "../../../../BaseClient"; import { ImageClient } from "../resources/image/client/Client"; import { TextToSpeechClient } from "../resources/textToSpeech/client/Client"; import { VideoClient } from "../resources/video/client/Client"; export declare namespace FlowsClient { type Options = BaseClientOptions; } export declare class FlowsClient { protected readonly _options: NormalizedClientOptions; protected _video: VideoClient | undefined; protected _image: ImageClient | undefined; protected _textToSpeech: TextToSpeechClient | undefined; constructor(options?: FlowsClient.Options); get video(): VideoClient; get image(): ImageClient; get textToSpeech(): TextToSpeechClient; }