export type WithAnimatedSizeEnhanceProps = { animationsDisabled?: boolean; }; declare function animatedSizeEnhance({ animateProps, onChangeOf, }: { animateProps: ('width' | 'height')[]; onChangeOf: string[]; }): (props: any) => any; export default animatedSizeEnhance;