import { App } from 'vue'; declare type ConverterOptions = DefaultConverterOptions | StrictConverterOptions; declare const _default: (app: App, options?: TimeagoOptions) => void; export default _default; declare interface DefaultConverterOptions { useStrict?: false; includeSeconds?: boolean; addSuffix?: boolean; } declare interface StrictConverterOptions { useStrict: true; addSuffix?: boolean; unit?: "second" | "minute" | "hour" | "day" | "month" | "year"; roundingMethod?: "floor" | "ceil" | "round"; } export declare interface TimeagoOptions { name?: string; converter?: unknown; converterOptions?: ConverterOptions; locale?: Locale; } export { }