import { IExecuteFunctions } from 'n8n-workflow';
export interface IPdfInput {
    buffer: Buffer;
    fileName: string;
}
export declare function getPdfInput(context: IExecuteFunctions, itemIndex: number): Promise<IPdfInput>;
