import { CSSProperties } from 'react'; declare function NivoBox(props: NivoBoxProps): JSX.Element; declare namespace NivoBox { var displayName: string; } export interface NivoBoxProps { from: any; to: any; config: any; delay: number; src: string; imageStyle?: CSSProperties; style: CSSProperties; uid: string; onRest?: any; onChange?: any; onDelayEnd?: any; } export default NivoBox;