import React, { FunctionComponent } from 'react'; export declare enum POSITION { TOP = "top", LEFT = "left" } export interface TextDisplayProps { id: string; label: string; name: string; value: string; labelPosition?: POSITION; isLabelVisible?: boolean; } export interface StyledDisplayLabelProps { labelPosition?: POSITION; } export declare const StyledTextDisplay: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, TextDisplayProps>>; export declare const StyledDisplayLabel: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledDisplayLabelProps>>; export declare const StyledContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledDisplayLabelProps>>; declare const TextDisplay: FunctionComponent; export default TextDisplay;