import React from "react"; import "./textlabel.scss"; export declare type TextLabelProps = JSX.IntrinsicElements["div"] & { /** Optional label for the textLabel can be a string or a template. */ label?: string | React.ReactNode; /** Optional label for the text label can be a string or a template. */ value: string | number | React.ReactNode; }; /** A text label is a component to display value with label */ export declare const TextLabel: React.FC;