import type { Component } from 'svelte'; interface SummaryMetric { label: string; value: string | number; hint?: string; } interface StatusLane { label: string; value: string | number; hint?: string; } interface HighlightItem { title: string; description?: string; meta?: string; badge?: string; } type WorkspaceStyle = 'inventory' | 'operations' | 'people' | 'calendar' | 'communications' | 'crm' | 'property' | 'ai' | 'store'; interface Props { resourceName: string; eyebrow: string; title: string; description: string; actionLabel: string; icon?: Component<{ class?: string; }>; metrics?: SummaryMetric[]; lanes?: StatusLane[]; highlights?: HighlightItem[]; tableLabel?: string; tableDescription?: string; emptyLanesText?: string; highlightsLabel?: string; workspaceStyle?: WorkspaceStyle; } declare const ResourceOperationsPage: Component; type ResourceOperationsPage = ReturnType; export default ResourceOperationsPage;