/** * A single detail item with label and value */ interface DetailItem { /** The label to display */ label: string; /** The value to display */ value: string; } /** * Props interface for ReadOnlyDetails component */ interface Props { /** The unique identifier to display with a copy button */ id: string; /** Optional section title */ title?: string; /** Optional description text */ description?: string; /** Array of label-value pairs to display */ details: DetailItem[]; } declare const ReadOnlyDetails: import("svelte").Component; type ReadOnlyDetails = ReturnType; export default ReadOnlyDetails;