export declare const WX_DEFAULT_THEME = "default"; export declare const WX_DEFAULT_FONT = "cx"; export type WxFont = "cx" | "no-cx"; export interface WxRenderOptions { markdown: string; theme?: string; font?: WxFont | string; } export declare function normalizeRenderOptions(opts: WxRenderOptions): Required; export declare function getHtml(opts?: WxRenderOptions): Promise;