/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * @hidden */ export interface DrawerItemComputed { itemClassNames: object; } /** * @hidden */ declare const DrawerItem: import('vue').DefineComponent; text: PropType; icon: PropType; svgIcon: PropType; separator: PropType; selected: PropType; disabled: PropType; targetItem: PropType; }>, {}, {}, { itemClassNames(): DrawerItemComputed['itemClassNames']; }, { focus(e: any): void; handleClick(): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { click: any; }, string, import('vue').PublicProps, Readonly; text: PropType; icon: PropType; svgIcon: PropType; separator: PropType; selected: PropType; disabled: PropType; targetItem: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; /** * Represents the [Kendo UI for Vue Drawer component]({% slug overview_drawer %}). * * ```jsx * * * * * * * ``` * */ export { DrawerItem };