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