/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * @hidden */ export interface ResizeHandlersProps { onResize: (e: any, args: { end: boolean; direction: any; }) => void; } /** * @hidden */ declare const ResizeHandlers: import('vue').DefineComponent<{}, {}, {}, {}, { onDrag(event: any, key: string): void; onRelease(event: any, key: string): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { resize: any; }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{ onResize?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ResizeHandlers };