/** * View transition helpers. * * @module bquery/motion */ import type { TransitionOptions } from './types'; /** * Execute a DOM update with view transition animation. * Falls back to immediate update when View Transitions API is unavailable. * * @param updateOrOptions - Update function or options object * @returns Promise that resolves when transition completes * * @example * ```ts * await transition(() => { * $('#content').text('Updated'); * }); * ``` */ export declare const transition: (updateOrOptions: (() => void | Promise) | TransitionOptions) => Promise; //# sourceMappingURL=transition.d.ts.map