/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module paste-from-office/normalizers/googlesheetsnormalizer
*/
import { type ViewDocument } from "@ckeditor/ckeditor5-engine";
import type { ClipboardInputTransformationData } from "@ckeditor/ckeditor5-clipboard";
import type { PasteFromOfficeNormalizer } from "../normalizer.js";
/**
* Normalizer for the content pasted from Google Sheets.
*
* @internal
*/
export declare class GoogleSheetsNormalizer implements PasteFromOfficeNormalizer {
	readonly document: ViewDocument;
	/**
	* Creates a new `GoogleSheetsNormalizer` instance.
	*
	* @param document View document.
	*/
	constructor(document: ViewDocument);
	/**
	* @inheritDoc
	*/
	isActive(htmlString: string): boolean;
	/**
	* @inheritDoc
	*/
	execute(data: ClipboardInputTransformationData): void;
}
