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