import { PropType } from 'vue'; export declare const definePropType: (val: any) => PropType; export declare const mutable: >(val: T) => Mutable; export declare type Mutable = { -readonly [P in keyof T]: T[P]; }; export type Arrayable = T | T[]; export type Awaitable = Promise | T; export declare const GlobalProvide: unique symbol; export interface InstallOptionsType { ajax?: any; aliJsUrl?: string[]; aliCssUrl?: string[]; isXM?: boolean; }