import { default as React } from 'react'; import { DeepPartial } from '../../types'; import { ImageTrailTheme } from './theme'; export interface ImageTrailProps extends React.ComponentProps<"div"> { images: string[]; renderImageBuffer?: number; rotationRange?: number; className?: string; imageClassName?: string; disapearDelay?: number; theme?: DeepPartial; } /** * ImageTrail component * @description The ImageTrail component is used to create a trail of images that follow the mouse, it is a decorative component that can be used to create a visual effect on the page, interesting for landing pages and other creative uses. * @returns React.FC */ export declare const ImageTrail: ({ children, images, renderImageBuffer, rotationRange, disapearDelay, className, imageClassName, theme: customTheme, ...props }: ImageTrailProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ImageTrail.d.ts.map