import type { Plugin } from 'vue';
import { TimeredCounterNumber } from './timered-counter-number.js';
import { TimeredCounterDatetimeDuration } from './timered-counter-datetime-duration.js';
import { TimeredCounterString } from './timered-counter-string.js';
declare const TimeredCounterPlugin: Plugin;
export { TimeredCounterNumber, TimeredCounterString, TimeredCounterDatetimeDuration, };
export default TimeredCounterPlugin;
declare module 'vue' {
    interface GlobalComponents {
        TimeredCounterNumber: typeof TimeredCounterNumber;
        TimeredCounterDatetimeDuration: typeof TimeredCounterDatetimeDuration;
        TimeredCounterString: typeof TimeredCounterString;
    }
}
