import type { ComputedRef } from "vue";
export interface MetaInfo {
    /** Whether to show "changelog" or not */
    changelog: ComputedRef<boolean>;
    /** Whether to show "Contributors" or not */
    contributors: ComputedRef<"content" | "meta" | boolean>;
    /** Whether to show "Last updated" or not */
    lastUpdated: ComputedRef<boolean>;
}
export declare const useMetaInfo: () => MetaInfo;
