@progress/kendo-react-dialogs
Version:
React Dialogs provide modal and non-modal windows for showing additional information to the user. KendoReact Dialogs package
29 lines (28 loc) • 1.1 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 { ActionsLayout } from './models/actions-layout.js';
import * as React from 'react';
/**
* Represents the props of the [KendoReact WindowActionsBar component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
*/
export interface WindowActionsBarProps {
/**
* Specifies the possible layouts of the action buttons ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/action-buttons)). Defaults to `end`.
*/
layout?: ActionsLayout;
/**
* @hidden
*/
children?: any;
}
/**
* Returns the action bar of the Window.
*
* @returns React.ReactElement
*/
export declare const WindowActionsBar: React.FunctionComponent<WindowActionsBarProps>;