interface KeyValueProps { label: string; value: string; orientation?: 'horizontal' | 'vertical'; class?: string; } declare const KeyValue: import("svelte").Component; type KeyValue = ReturnType; export default KeyValue;