import { type MotionLabProps } from './MotionLab'; export type MotionLabMountOptions = MotionLabProps; export type MotionLabHandle = { update(options: MotionLabMountOptions): void; unmount(): void; }; export declare function mountMotionLab(container: HTMLElement, options?: MotionLabMountOptions): MotionLabHandle;