import { default as React, ReactElement } from 'react'; type GlitchImageProps = { image: string; width?: number | string; splitSize?: number; animationInterval?: number; animationDuration?: number; variations?: Array; inside?: boolean; opacity?: number; brightness?: number; filter?: boolean; customFilter?: string; activeFxOnInterval?: boolean; activeFxOnHover?: boolean; layerColors?: Array | boolean; baseImageCssOnActiveFx?: React.CSSProperties; onActiveFx?: (time: number) => void; }; declare const GlitchImage: ({ image, width, splitSize, animationInterval, animationDuration, variations, inside, opacity, brightness, filter, customFilter, activeFxOnInterval, activeFxOnHover, layerColors, onActiveFx, baseImageCssOnActiveFx, }: GlitchImageProps) => ReactElement; export { GlitchImage };