import type { ComputedRef, MaybeRef, Ref } from 'vue'; import type { VueCreateSitePathResolverOptions } from '../../types.js'; export declare function createSitePathResolver(options?: VueCreateSitePathResolverOptions): (path: MaybeRef) => Ref; export declare function withSiteTrailingSlash(path: MaybeRef): ComputedRef; export declare function withSiteUrl(path: MaybeRef, options?: VueCreateSitePathResolverOptions): ComputedRef;