import { FC, PropsWithChildren } from 'react'; interface AnimatedIconWrapperProps extends PropsWithChildren { durationMs: number; startAnimation?: boolean; className?: string; 'data-testid'?: string; } /** * Component used as a wrapper for transitions * @category React Component */ export declare const AnimatedIconWrapper: FC; export {};