@progress/kendo-react-editor
Version:
Kendo UI for React Editor package
17 lines (16 loc) • 428 B
TypeScript
import * as React from 'react';
import { ToolProps } from './ToolProps';
import { EditorToolsSettings } from './../config/toolsSettings';
/**
* @hidden
*/
export interface PrintProps extends ToolProps {
/**
* The settings of the tool. Use it to modify the tool appearance.
*/
settings?: EditorToolsSettings.PrintSettings;
}
/**
* @hidden
*/
export declare const Print: React.FunctionComponent<PrintProps>;