@progress/kendo-vue-editor
Version:
25 lines (24 loc) • 1.07 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 { ButtonProps } from '@progress/kendo-vue-buttons';
import { BasicToolProps, ToolRenderProp } from './ToolProps';
export interface FindAndReplaceProps extends BasicToolProps, ToolRenderProp, ButtonProps {
}
/**
* @hidden
*/
declare const FindAndReplace: import('vue').DefineComponent<{}, {}, {
showDialog: boolean;
}, {}, {
onClose(): void;
onOpen(): void;
preventDefault(e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
[x: string]: any;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { FindAndReplace };