import type { Snippet } from 'svelte'; interface PropertyRowProps { label: string; value: string; copyable?: boolean; mono?: boolean; class?: string; actions?: Snippet; } declare const PropertyRow: import("svelte").Component; type PropertyRow = ReturnType; export default PropertyRow;