import { FloatActionCMD, FloatOptions, UpdateFloatOptions } from './models/float'; declare function show(options: FloatOptions): Promise<{ id: string; }>; declare function hide(payload: { id: string; }): Promise<{}>; declare function animate(payload: { id: string; animation: 'zoom'; }): Promise<{}>; declare function update(options: UpdateFloatOptions): Promise<{}>; export declare const float: { show: typeof show; hide: typeof hide; update: typeof update; animate: typeof animate; addEventListener: (event: FloatActionCMD, listener: (data: any) => void) => void; removeEventListener: (event: FloatActionCMD, listener: (data: any) => void) => void; removeAllListeners: (event?: FloatActionCMD) => void; }; export {};