declare const AiCapability: { isValidValue(value: string): boolean; getValues(): string[]; CHAT_HISTORY: "chat_history"; FUNCTION_CALLING: "function_calling"; IMAGE_GENERATION: "image_generation"; MULTIMODAL_INPUT: "multimodal_input"; MULTIMODAL_OUTPUT: "multimodal_output"; TEXT_GENERATION: "text_generation"; TEXT_TO_SPEECH: "text_to_speech"; WEB_SEARCH: "web_search"; }; declare const ContentRole: { isValidValue(value: string): boolean; getValues(): string[]; USER: "user"; MODEL: "model"; SYSTEM: "system"; }; declare const Modality: { isValidValue(value: string): boolean; getValues(): string[]; TEXT: "text"; IMAGE: "image"; AUDIO: "audio"; }; declare const ServiceType: { isValidValue(value: string): boolean; getValues(): string[]; CLOUD: "cloud"; SERVER: "server"; CLIENT: "client"; }; export { AiCapability, ContentRole, Modality, ServiceType }; //# sourceMappingURL=index.d.ts.map