import { IconComponent } from '../../icons/Icon'; export type WithAnimateBaseHOCProps = { startIcon?: IconComponent; endIcon?: IconComponent; startDirection?: number; endDirection?: number; transition?: number; }; export declare const withAnimateSwitcherHOC: (params: WithAnimateBaseHOCProps) => IconComponent;