import { Config } from '../commands/args'; export declare type tagsTemplate = (type: string) => string; export declare const htmlTemplate: (indexHtml: string | undefined) => Promise<(args: any) => string>; interface ParseHtmlParams { config: Config; ctx: Record; dev: boolean; template: (props: Record) => string; } export declare const parseHtml: ({ config, ctx, dev, template }: ParseHtmlParams) => any; export {};