UNPKG

@progress/kendo-react-dialogs

Version:

React Dialogs provide modal and non-modal windows for showing additional information to the user. KendoReact Dialogs package

24 lines (23 loc) 701 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * @hidden */ export interface ResizeHandlersProps { onResize: (e: any, args: { end: boolean; direction: any; }) => void; } /** * @hidden */ export declare class ResizeHandlers extends React.Component<ResizeHandlersProps, {}> { render(): React.JSX.Element; }