import type { ComputedRef } from 'vue'; import type { DateInfo, DateOptions } from '../../shared'; export declare type AuthorRef = ComputedRef; export declare const useAuthor: (fallback?: string | string[] | undefined) => AuthorRef; export declare type CategoryRef = ComputedRef; export declare const useCategory: () => CategoryRef; export declare type TagRef = ComputedRef; export declare const useTag: () => TagRef; export declare type DateRef = ComputedRef; export declare const useDate: (options?: DateOptions | undefined, fallback?: Date | undefined) => DateRef;