/** * Lightweight image dimension detection using magic bytes * Supports PNG, JPEG, GIF */ export declare function getImageDimensions(data: Uint8Array): { width?: number; height?: number; };