///
import { type ILogger, type IPicGo } from './types';
interface IInput {
input: any[];
minWidth: number;
minHeight: number;
position: string;
waterMark: string | Buffer;
}
export declare const inputAddWaterMarkHandle: (ctx: IPicGo, iinput: IInput, logger: ILogger) => Promise;
export {};