export type Transitioned = "idle" | "closing" | "opening"; export declare function useTransitioned(open: boolean, el: HTMLElement | null, changeComplete?: (b: boolean) => void): [Transitioned, boolean];