import { Ref } from 'vue'; import { PlaylistSchema } from '@signage-editor/core'; export declare function useStageScale(activePlaylist: Readonly>): { viewportRef: Ref; scale: Ref; updateScale: () => void; scheduleScaleUpdate: () => void; observeViewport: () => void; disposeStageScale: () => void; };