import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface ReadOnlyProps extends ComposableProps<'div'> { /** * Layout type */ type?: "Vertical" | "Horizontal"; /** * Whether to show label icon */ labelIcon?: boolean; /** * Label text */ label?: string; /** * Value text */ value?: string; /** * Additional CSS classes */ className?: string; } export declare const ReadOnly: React.FC; //# sourceMappingURL=ReadOnly.d.ts.map