interface Props {
    tasks: any[];
    startField?: string;
    endField?: string;
    titleField?: string;
    progressField?: string;
    editable?: boolean;
    onTaskEdit?: (task: any, field: string, value: any) => void;
}
declare const GanttView: import("svelte").Component<Props, {}, "">;
type GanttView = ReturnType<typeof GanttView>;
export default GanttView;
//# sourceMappingURL=GanttView.svelte.d.ts.map