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>;
