export declare function escapeHtml(text: string): string; declare type InputParamsInlinePreprocessedSvelteComponent = { name?: string; props?: any; options?: string; }; export declare function inlinePreprocessedSvelteComponent({ name, props, options, }: InputParamsInlinePreprocessedSvelteComponent): string; declare type InputParamsInlineSvelteComponent = { name?: string; props?: any; options?: { loading?: string; element?: string; }; }; export declare function inlineSvelteComponent({ name, props, options, }: InputParamsInlineSvelteComponent): string; export {};