import { Ref } from 'vue'; import { CodeData } from '../components/types'; export interface ThroneType { getCode: (codeName: string, context?: Record) => Ref; impl: (throne: Partial) => void; } declare const Throne: ThroneType; export default Throne;