import { IconComponent } from '../../icons/Icon'; export type WithAnimateBaseHOCProps = { icons: IconComponent[]; directions?: number[]; transition?: number; }; export declare const withAnimateBaseHOC: (params: WithAnimateBaseHOCProps) => IconComponent;