import { FC, PropsWithChildren } from "react"; export declare const appearanceIn: import("styled-components").Keyframes; export declare const appearanceOut: import("styled-components").Keyframes; export interface CssTransitionProps { visible: boolean; name: string; leaveTime: number; enterTime: number; clearTime: number; onExited?: () => void; onEntered?: () => void; } export declare const CssTransition: FC>;