import { RefObject } from 'react';
type TransitionEventType = 'transitionstart' | 'transitionrun' | 'transitionend';
export declare function useTransitionEvent(ref: RefObject<HTMLElement | null>, type: TransitionEventType, propertyName: string, callback: () => void): void;
export {};
