import { PluginObject } from 'vue'; export declare function superEach(data: {} | [], callback: (item: T, i: string | number) => void): {}; export declare function superEachAsync(data: {} | [], callback: (item: T, i: string | number) => void): Promise<{}>; export declare function parseDate(v: string | Date | number): Date; export declare function parseDayTime(d?: number): number; export declare const utils: { superEach: typeof superEach; superEachAsync: typeof superEachAsync; parseDate: typeof parseDate; parseDayTime: typeof parseDayTime; }; declare const Utils: PluginObject; export default Utils;