export declare const CHAT_HISTORY = "chat_history"; export declare const FUNCTION_CALLING = "function_calling"; export declare const IMAGE_GENERATION = "image_generation"; export declare const MULTIMODAL_INPUT = "multimodal_input"; export declare const MULTIMODAL_OUTPUT = "multimodal_output"; export declare const TEXT_GENERATION = "text_generation"; export declare const TEXT_TO_SPEECH = "text_to_speech"; export declare const WEB_SEARCH = "web_search"; export declare const _VALUE_MAP: { chat_history: boolean; function_calling: boolean; image_generation: boolean; multimodal_input: boolean; multimodal_output: boolean; text_generation: boolean; text_to_speech: boolean; web_search: boolean; }; /** * Checks if the given value is valid for the enum. * * @since 0.2.0 * * @param value - The value to check. * @returns True if the value is valid, false otherwise. */ export declare function isValidValue(value: string): boolean; /** * Gets the list of valid values for the enum. * * @since 0.2.0 * * @returns The list of valid values. */ export declare function getValues(): string[]; //# sourceMappingURL=ai-capability.d.ts.map