export interface ARConfig { cardId: string; targetImageSrc: string; targetTaarSrc?: string; videoSrc: string; videoWidth: number; videoHeight: number; scale: number; cameraConfig?: MediaStreamConstraints['video']; } export interface ARDataItem { id: string; type: "photos" | "videoNative" | "ar" | "imageOverlay"; images?: { image: string; fileId: string; }[]; url?: string; scale?: number; width?: number; height?: number; fileId?: string; } export declare function mapDataToPropsConfig(data: any[]): ARConfig;