import dayjs from '#build/dayjs.imports.mjs';
import { Dayjs } from 'dayjs';
declare module '#app' {
    interface NuxtApp {
        $dayjs: Dayjs;
    }
}
declare module 'vue' {
    interface ComponentCustomProperties {
        $dayjs(date?: dayjs.ConfigType): dayjs.Dayjs;
    }
}
declare module '@vue/runtime-core' {
    interface ComponentCustomProperties {
        $dayjs(date?: dayjs.ConfigType): dayjs.Dayjs;
    }
}
declare const _default: any;
export default _default;
