import { INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow';
declare module 'n8n-workflow' {
    interface IExecuteItem {
        binary?: {
            [key: string]: {
                data: string;
                mimeType?: string;
                fileName?: string;
            };
        };
    }
}
export declare class DocToText implements INodeType {
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
}
