import { type StyleValue } from 'vue';
export interface MarqueeProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    direction?: 'vertical' | 'horizontal';
    delay?: number;
    speed?: number;
}
export declare const defaultMarqueeProps: {
    direction: MarqueeProps["direction"];
    delay: number;
    speed: number;
};
export interface MarqueeSlots {
    default?(props: Record<string, never>): any;
}
export interface MarqueeExpose {
    update: () => void;
}
