export declare const FUNCTION_NAMES: { readonly ANALYZE_IMAGE: "analyze_image"; readonly COMPARE_IMAGES: "compare_images"; readonly DETECT_OBJECTS_IN_IMAGE: "detect_objects_in_image"; readonly ANALYZE_VIDEO: "analyze_video"; }; export type FunctionName = (typeof FUNCTION_NAMES)[keyof typeof FUNCTION_NAMES]; export declare const IMAGE_FUNCTIONS: readonly ["analyze_image", "compare_images", "detect_objects_in_image"]; export declare const VIDEO_FUNCTIONS: readonly ["analyze_video"]; export declare const ALL_FUNCTIONS: readonly ["analyze_image", "compare_images", "detect_objects_in_image", "analyze_video"]; export type ImageFunctionName = (typeof IMAGE_FUNCTIONS)[number]; export type VideoFunctionName = (typeof VIDEO_FUNCTIONS)[number]; export type AllFunctionName = (typeof ALL_FUNCTIONS)[number]; //# sourceMappingURL=FunctionNames.d.ts.map