import { TemplateRef } from "@angular/core"; /** A text label is a component to display value with label */ export declare class TextLabelComponent { /** Optional id for the textLabel. */ id?: string; /** Optional label for the textLabel can be a string or a template. */ label?: string | TemplateRef; /** Optional label for the text label can be a string or a template. */ value?: string | TemplateRef; /** Optional custom class to append to the modal. */ className?: string | Array | { [key: string]: boolean; }; /** * Check if input parameter is a string */ isString: (input: any) => boolean; }