@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
38 lines (37 loc) • 1.67 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ToolbarProps } from '@progress/kendo-react-buttons';
import * as React from 'react';
/**
* Represents the props of the KendoReact [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter) component.
*/
export interface SchedulerFooterProps extends ToolbarProps {
/**
* The content of the footer component.
*/
children?: React.ReactNode;
}
/**
* Represents the object which is returned from the `ref` callback of the [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter).
*
* For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
*/
export interface SchedulerFooterHandle {
/**
* The HTML element of the SchedulerFooter component.
*/
element: HTMLDivElement | null;
/**
* The props of the SchedulerFooter component.
*/
props: SchedulerFooterProps;
}
/**
* Represents the default `footer` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
*/
export declare const SchedulerFooter: React.ForwardRefExoticComponent<SchedulerFooterProps & React.RefAttributes<SchedulerFooterHandle>>;