import { type ComputedRef } from "vue"; import { type LicenseContextValue } from "./license-context"; /** * Vue counterpart of React's `useLicenseContext()` hook. * * Returns a `ComputedRef` whose `checkFeature(...)` / * `getLimit(...)` callbacks track the value installed by * `CopilotKitProvider`. Falls back to a permissive default * (`createLicenseContextValue(null)`) when no provider has registered the * context — matching React's `createContext(createLicenseContextValue(null))` * default and keeping component trees mountable in isolation. */ export declare function useLicenseContext(): ComputedRef; //# sourceMappingURL=useLicenseContext.d.ts.map