import type { AppConfig } from '@nuxt/schema';
import theme from '#build/ui/marquee';
import type { ComponentConfig } from '../types/tv';
type Marquee = ComponentConfig<typeof theme, AppConfig, 'marquee'>;
export interface MarqueeProps {
    /**
     * The element or component this component should render as.
     * @defaultValue 'div'
     */
    as?: any;
    pauseOnHover?: boolean;
    reverse?: boolean;
    orientation?: Marquee['variants']['orientation'];
    repeat?: number;
    overlay?: boolean;
    class?: any;
    ui?: Marquee['slots'];
}
export interface MarqueeSlots {
    default(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<MarqueeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MarqueeProps> & Readonly<{}>, {
    repeat: number;
    orientation: Marquee["variants"]["orientation"];
    overlay: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, MarqueeSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
