import type { IChromeFrameArgs } from './types.js'; export declare function getChromeFrame(frameId: string | number): { subscribe: (this: void, run: import("svelte/store").Subscriber> | undefined>, invalidate?: ((value?: IChromeFrameArgs> | undefined) => void) | undefined) => import("svelte/store").Unsubscriber; updatePos: (position: IChromeFrameArgs['position']) => void; remove: () => void; makeOnTop: () => void; minimize: () => void; toggle: () => void; }; /** open a chrome frame in DOM and add it to the store **/ export declare function openChromeFrame(frameId: string, args?: Partial): void; export declare function removeChromeFrame(frameId: string, args?: Partial): void;