import { MaybeRef, Ref, App } from 'vue'; import { LicenseProduct, LicenseType } from '@/utils/enumerators'; export declare const useLicense: (key: MaybeRef, app?: App) => { license: { invalidatedMessage?: string | undefined; isValidating: boolean; isValidated: boolean; isValidKey: boolean; type: LicenseType; product: LicenseProduct; }; }; export declare function useInjectedLicense(pagesContainer: Ref): { license: { invalidatedMessage?: string | undefined; isValidating: boolean; isValidated: boolean; isValidKey: boolean; type: LicenseType; product: LicenseProduct; }; };