import { TdNoticeBarProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    content: {
        type: PropType<TdNoticeBarProps['content']>;
    };
    direction: {
        type: PropType<TdNoticeBarProps['direction']>;
        default: TdNoticeBarProps['direction'];
        validator(val: TdNoticeBarProps['direction']): boolean;
    };
    interval: {
        type: NumberConstructor;
        default: number;
    };
    marquee: {
        type: PropType<TdNoticeBarProps['marquee']>;
        default: TdNoticeBarProps['marquee'];
    };
    operation: {
        type: PropType<TdNoticeBarProps['operation']>;
    };
    prefixIcon: {
        type: PropType<TdNoticeBarProps['prefixIcon']>;
        default: TdNoticeBarProps['prefixIcon'];
    };
    suffixIcon: {
        type: PropType<TdNoticeBarProps['suffixIcon']>;
    };
    theme: {
        type: PropType<TdNoticeBarProps['theme']>;
        default: TdNoticeBarProps['theme'];
        validator(val: TdNoticeBarProps['theme']): boolean;
    };
    visible: {
        type: BooleanConstructor;
        default: any;
    };
    modelValue: {
        type: BooleanConstructor;
        default: any;
    };
    defaultVisible: BooleanConstructor;
    onChange: PropType<TdNoticeBarProps['onChange']>;
    onClick: PropType<TdNoticeBarProps['onClick']>;
};
export default _default;
