import * as Enums from "./enums"; import * as HostConfig from "./host-config"; export declare function processMarkdown(text: string): any; export declare function getValueOrDefault(obj: any, defaultValue: T): T; export declare function isNullOrEmpty(value: string): boolean; export declare function appendChild(node: Node, child: Node): void; export declare function renderSeparation(separationDefinition: HostConfig.ISeparationDefinition, orientation: Enums.Orientation): HTMLElement; export declare function stringToCssColor(color: string): string; export interface IInput { id: string; value: string; } export declare class StringWithSubstitutions { private _isProcessed; private _original; private _processed; substituteInputValues(inputs: Array): void; get(): string; set(value: string): void; }