import type { Templates, HoganHelpers } from '../../types';
import type { BindEventForHits, SendEventForHits } from '../utils/createSendEventForHits';
import type { HoganOptions } from 'hogan.js';
export declare function renderTemplate({ templates, templateKey, compileOptions, helpers, data, bindEvent, sendEvent, }: {
    templates: Templates;
    templateKey: string;
    compileOptions?: HoganOptions;
    helpers?: HoganHelpers;
    data?: Record<string, any>;
    bindEvent?: BindEventForHits;
    sendEvent?: SendEventForHits;
}): string | import("preact").VNode<{}> | import("preact").VNode<{}>[] | null;
