UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

21 lines (20 loc) 580 B
/// <reference path="../modules/global.d.d.ts" /> import React from "react"; import { Value } from "../props"; export interface Props { children: JSX.Element; status?: boolean; display?: boolean; value?: Value; className: string; type?: string; duration?: number; showAnimation?: boolean; hideAnimation?: boolean; beforeShow?: () => Promise<void>; beforeHide?: () => Promise<void>; afterShow?: () => void; afterHide?: () => void; } declare const CSSTransition: React.FC<Props>; export default CSSTransition;