UNPKG

@progress/kendo-vue-editor

Version:
32 lines (31 loc) 1.28 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { DropDownListProps, DropDownListChangeEvent } from '@progress/kendo-vue-dropdowns'; import { BasicToolProps, ToolRenderProp } from './ToolProps'; export interface DropDownListToolProps extends BasicToolProps, ToolRenderProp, DropDownListProps { } /** * @hidden */ export interface FontSizeProps extends DropDownListToolProps { } /** * @hidden */ export interface FontNameProps extends DropDownListToolProps { } /** * @hidden */ declare const FontName: import('vue').DefineComponent<{}, {}, {}, {}, { customItemRender(h: any, li: any, itemProps: any): any; onFontNameChange(e: DropDownListChangeEvent): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | { [x: string]: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { FontName };