import type { FC, ReactNode, Ref } from 'react'; export interface InlineEditPreviewValueProps { ref?: Ref; /** * Clamp the read-mode value to this many lines (with an ellipsis) instead of * the default single-line truncation. Use for multi-line values (textarea). */ lineClamp?: 1 | 2 | 3 | 4 | 5 | 6; children?: ReactNode; } export declare const InlineEditPreviewValue: FC;