/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ /// import { TaskFilter, ITask } from '@microsoft/mgt-components'; import { TemplateContext, TemplateRenderedData } from '@microsoft/mgt-element'; export type PlannerProps = { isNewTaskVisible?: boolean; readOnly?: boolean; targetId?: string; targetBucketId?: string; initialId?: string; initialBucketId?: string; hideHeader?: boolean; hideOptions?: boolean; groupId?: string; taskFilter?: TaskFilter; templateContext?: TemplateContext; updated?: (e: CustomEvent) => void; taskAdded?: (e: CustomEvent) => void; taskChanged?: (e: CustomEvent) => void; taskClick?: (e: CustomEvent) => void; taskRemoved?: (e: CustomEvent) => void; templateRendered?: (e: CustomEvent) => void; }; export declare const Planner: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=planner.d.ts.map