export interface ReadOnlyTextProps { /** * The value to display */ value?: string; /** * Text to show when no value is provided */ noDataFallbackText?: string; } export declare const ReadOnlyText: ({ value, noDataFallbackText, }: ReadOnlyTextProps) => import("react/jsx-runtime").JSX.Element;