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