export type BulkEditFieldType = 'text' | 'number' | 'select' | 'boolean'; export interface BulkEditField { id: string; label: string; type: BulkEditFieldType; options?: { value: string; label: string; }[]; } interface BulkEditPanelProps { fields?: BulkEditField[]; selectedCount?: number; values?: Record; enabled?: Record; applyLabel?: string; class?: string; onchange?: (values: Record) => void; onapply?: (values: Record) => void; } declare const BulkEditPanel: import("svelte").Component; type BulkEditPanel = ReturnType; export default BulkEditPanel;