@surveycake/rc
Version:
react component of surveycake
7 lines (6 loc) • 501 B
TypeScript
import React from 'react';
import { SlideProps as MUISlideProps } from '@material-ui/core/Slide';
interface SlideProps extends MUISlideProps {
}
declare const Slide: React.ForwardRefExoticComponent<Pick<SlideProps, "in" | "mountOnEnter" | "unmountOnExit" | "timeout" | "addEndListener" | "onEnter" | "onEntering" | "onEntered" | "onExit" | "onExiting" | "onExited" | "children" | "direction" | "style" | "appear" | "enter" | "exit"> & React.RefAttributes<HTMLDivElement>>;
export default Slide;