// @flow import * as React from "react"; import { ReactComponentStyled } from "styled-components"; export type State = {| maxHeight: number | null, transitionFinished: boolean, visible: boolean, |}; export type Props = {| +children: React.Node, +maxHeight: ?number, +expanded?: boolean, +ariaLabelledBy?: string, +id?: string, |}; declare export var StyledSlide: ReactComponentStyled; declare export default React.ComponentType;