import { TdLoadingProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    attach: {
        type: PropType<TdLoadingProps["attach"]>;
        default: string;
    };
    content: {
        type: PropType<TdLoadingProps["content"]>;
    };
    default: {
        type: PropType<TdLoadingProps["default"]>;
    };
    delay: {
        type: NumberConstructor;
        default: number;
    };
    fullscreen: BooleanConstructor;
    indicator: {
        type: PropType<TdLoadingProps["indicator"]>;
        default: boolean;
    };
    inheritColor: BooleanConstructor;
    loading: {
        type: BooleanConstructor;
        default: boolean;
    };
    preventScrollThrough: {
        type: BooleanConstructor;
        default: boolean;
    };
    showOverlay: {
        type: BooleanConstructor;
        default: boolean;
    };
    size: {
        type: StringConstructor;
        default: string;
    };
    text: {
        type: PropType<TdLoadingProps["text"]>;
    };
    zIndex: {
        type: NumberConstructor;
    };
};
export default _default;
