import React from "react";
export declare const TaskListHeaderDefault: React.FC<{
    headerHeight: number;
    rowWidth: string;
    fontFamily: string;
    fontSize: string;
    scheduleType: string;
    allSelected?: boolean;
    onSelectAll?: (selected: boolean) => void;
    columnWidths?: Record<string, number>;
    onColumnResize?: (colId: string, width: number) => void;
}>;
