import { TdLoadingProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    attach: {
        type: PropType<TdLoadingProps['attach']>;
        default: TdLoadingProps['attach'];
    };
    content: {
        type: PropType<TdLoadingProps['content']>;
    };
    default: {
        type: PropType<TdLoadingProps['default']>;
    };
    delay: {
        type: NumberConstructor;
        default: number;
    };
    duration: {
        type: NumberConstructor;
        default: number;
    };
    fullscreen: BooleanConstructor;
    indicator: {
        type: PropType<TdLoadingProps['indicator']>;
        default: TdLoadingProps['indicator'];
    };
    inheritColor: BooleanConstructor;
    layout: {
        type: PropType<TdLoadingProps['layout']>;
        default: TdLoadingProps['layout'];
        validator(val: TdLoadingProps['layout']): boolean;
    };
    loading: {
        type: BooleanConstructor;
        default: boolean;
    };
    pause: BooleanConstructor;
    reverse: BooleanConstructor;
    size: {
        type: StringConstructor;
        default: string;
    };
    text: {
        type: PropType<TdLoadingProps['text']>;
    };
    theme: {
        type: PropType<TdLoadingProps['theme']>;
        default: TdLoadingProps['theme'];
        validator(val: TdLoadingProps['theme']): boolean;
    };
};
export default _default;
