export interface DescriptionItem { label: string; value: string; span?: 1 | 2; } interface DescriptionsProps { items?: DescriptionItem[]; title?: string; columns?: 1 | 2 | 3; bordered?: boolean; size?: 'sm' | 'md'; class?: string; } declare const Descriptions: import("svelte").Component; type Descriptions = ReturnType; export default Descriptions;