import type { VariantType } from "../types/index.js"; export type MotionEventNames = "motionstart" | "motioncomplete"; export declare function motionEvent(name: MotionEventNames, target: VariantType, isExit?: boolean): CustomEvent<{ target: VariantType; isExit: boolean; }>;