import * as React from 'react';
import { ToolProps } from './ToolProps';
import { EditorToolsSettings } from './../config/toolsSettings';
/**
 * @hidden
 */
export interface CleanFormattingProps extends ToolProps {
    /**
     * The settings of the tool. Use it to modify the tool appearance.
     */
    settings?: EditorToolsSettings.CleanFormattingSettings;
}
/**
 * @hidden
 */
export declare const CleanFormatting: React.FunctionComponent<CleanFormattingProps>;
