import type { DocumentFormat, ImageFormat, VideoFormat } from "@strands-agents/sdk"; export declare function detectImageFormat(filePath: string): ImageFormat | undefined; export declare function detectVideoFormat(filePath: string): VideoFormat | undefined; export declare function detectDocumentFormat(filePath: string): DocumentFormat | undefined;