import { ActiveTextTruncateDirection } from '../../composables/useActiveTextTruncate'; export interface ActiveTextTruncateProps { /** * Number of Pixel Per Millisecond for the text transition. */ ppms?: number; /** * Maximum width of the fading mask (must be greater than 0). */ fadingMaxWidth?: number; /** * Minimum width of the fading mask (must be greater than 0). */ fadingMinWidth?: number; /** * Delay to start moving the text (in milliseconds). */ delay?: number; /** * Direction of the truncate ('ltr' or 'rtl'). */ direction?: ActiveTextTruncateDirection; } declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import('../../../node_modules/vue').DefineComponent void; end: (...args: any[]) => void; start: (...args: any[]) => void; }, string, import('../../../node_modules/vue').PublicProps, Readonly & Readonly<{ onCancel?: ((...args: any[]) => any) | undefined; onEnd?: ((...args: any[]) => any) | undefined; onStart?: ((...args: any[]) => any) | undefined; }>, { direction: ActiveTextTruncateDirection; ppms: number; fadingMaxWidth: number; fadingMinWidth: number; delay: number; }, {}, {}, {}, string, import('../../../node_modules/vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };