import type { Site, Post, Page } from '../types';
interface HandlebarsContext {
    post?: Post;
    page?: Page;
    site?: Site;
    '@site'?: Site;
    url?: string;
}
interface HandlebarsOptions {
    hash?: {
        absolute?: boolean;
        [key: string]: unknown;
    };
}
export declare function urlHelper(this: HandlebarsContext, options: HandlebarsOptions): string;
export {};
//# sourceMappingURL=url.d.ts.map