import { ExtractPropTypes, PropType } from "vue";
export declare const UiLoadingPropsOption: {
    readonly message: {
        readonly type: StringConstructor;
        readonly default: "加载中";
    };
    readonly visible: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly zIndex: {
        readonly type: NumberConstructor;
    };
    readonly mode: {
        readonly type: PropType<"fixed" | "absolute">;
        readonly default: "absolute";
    };
    readonly icon: {
        readonly type: StringConstructor;
        readonly default: "loading";
    };
};
export type UiLoadingProps = ExtractPropTypes<typeof UiLoadingPropsOption>;
