export interface MazAnimatedElementProps { /** * The direction of the animation * @default "up" * @values "up", "down", "left", "right" */ direction?: 'up' | 'down' | 'left' | 'right'; /** * The delay of the animation * @default 0 */ delay?: number; /** * The duration of the animation * @default 2000 */ duration?: number; /** * Play the animation only once * @default true */ once?: boolean; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { element: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { element: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };