export declare const MAX_SIZE = 2048; export declare const DEFAULT_SIZE = 512; /** * Clamps a requested size into a sane integer range, falling back to * `DEFAULT_SIZE` for non-finite or non-positive inputs. */ export declare function sanitizeSize(size: number): number;