interface CircularGalleryProps { items?: { image: string; text: string; }[]; bend?: number; textColor?: string; borderRadius?: number; font?: string; } export default function CircularGallery({ items, bend, textColor, borderRadius, font, }: CircularGalleryProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=CircularGallery.d.ts.map