export interface ImportColumn { id: string; label: string; } export interface ImportMapping { source: string; target: string; } export interface ImportResult { rows: Record[]; headers: string[]; mapping: ImportMapping[]; } interface ImportWizardProps { columns?: ImportColumn[]; class?: string; onimport?: (result: ImportResult) => void; oncancel?: () => void; } declare const ImportWizard: import("svelte").Component; type ImportWizard = ReturnType; export default ImportWizard;