/** * 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 function GifPlayer({ children, color, className, isInDialog }: { children: any; color: any; className: any; isInDialog: any; }): React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export namespace GifPlayer { namespace propTypes { let children: PropTypes.Validator>>; let className: PropTypes.Requireable; let color: PropTypes.Requireable; let isInDialog: PropTypes.Requireable; } namespace defaultProps { let color_1: string; export { color_1 as color }; let isInDialog_1: boolean; export { isInDialog_1 as isInDialog }; } } import React from 'react'; import PropTypes from 'prop-types';