import { ComputedRef } from 'vue'; import { AppFile, EmbeddedAppShortcut } from '../../../types/app'; export declare function useInstalledEmbeddables(): { isFetching: import('vue').Ref; installedEmbeddablesById: import('vue').Ref | null, Record | null>; refetchedFor: Record; shouldUseDeviceUrl: ComputedRef; shortcuts: ComputedRef>; refetch: (fileId?: AppFile["id"]) => void; cleanup: () => void; getDeviceUrl: (fileId?: AppFile["id"]) => string | undefined; };