import { RefObject } from 'react';
export interface IUseSecondChildExpandAnimationOptions {
    disabled?: boolean;
    duration?: number;
    expanded?: boolean;
    ignoreInitialRender?: boolean;
}
export declare function useSecondChildExpandAnimation(elementRef: RefObject<HTMLElement>, options: IUseSecondChildExpandAnimationOptions): () => void | (() => void);
