export interface ResizeOptions { /** * Width of the resized image */ width: number; /** * Height of the resized image */ height: number; /** * Quality of the resized image (0-100) */ quality?: number; }