import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type Color = 'light' | 'dark'; interface GifPlayerProps { children: ReactNode; className?: string | null; color?: Color | null; isInDialog?: boolean | null; } /** * The `` component is used to pause and play images that are gif’s. * It works by replacing the gif with a static image on pause. */ export declare const GifPlayer: MdxComponent; export {};