import React from 'react'; import { ITransition } from '..'; import { IPropsAny } from '../types'; export interface IExpand extends Omit { value?: number; expandSize?: number; orientation?: 'veritcal' | 'horizontal'; WrapperProps?: IPropsAny; className?: string; } declare const Expand: React.FC; export default Expand;