import { default as React, MouseEventHandler } from 'react'; import { DeprecatedModalSlideshowSlide } from './types'; export type DeprecatedModalSlideshowBodyProps = { /** * The slides to display in the ModalSlideshow. */ slides: DeprecatedModalSlideshowSlide[]; /** * Handler that is called after the last slide has been displayed. */ onDone: MouseEventHandler; /** * Handler that is called to cancel the slideshow. */ onCancel: MouseEventHandler; /** * The translations for the buttons. */ translations: { cancel: string; previous: string; next: string; done: string; }; }; export declare const DeprecatedModalSlideshowBody: ({ slides, translations, onCancel, onDone, }: DeprecatedModalSlideshowBodyProps) => React.JSX.Element; //# sourceMappingURL=DeprecatedModalSlideshowBody.d.ts.map