///
import { ResizeOptions, Sharp } from 'sharp';
declare type SharpOption = T;
export declare type ResizeOption = SharpOption | SharpOption[];
export interface Size {
width?: number;
height?: number;
options?: ResizeOptions;
}
export interface ExtendSize {
suffix: string;
Body?: NodeJS.ReadableStream & Sharp;
}
export interface SharpOptions {
resize?: ResizeOption;
resizeMultiple?: ResizeOption;
ignoreAspectRatio?: boolean;
}
export {};