import React from "react";
import { ColorStyles } from "../../types/public-types";
export type TaskListHeaderActionsProps = {
    onCollapseAll: () => void;
    onExpandFirstLevel: () => void;
    onExpandAll: () => void;
    colors: Partial<ColorStyles>;
};
export declare const TaskListHeaderActions: React.FC<TaskListHeaderActionsProps>;
