import { getComponentRef } from "../libs/get-component-ref.js"; //#region src/presence/presence.libs.d.ts declare function usePresence(present: boolean): { isPresent: boolean; ref: (node: HTMLElement) => void; }; declare function getAnimationName(styles?: CSSStyleDeclaration): string; //#endregion export { getAnimationName, getComponentRef, usePresence };