import type { IconSize } from "../types/icon.js"; /** * Calculates icon width and height based on provided size or fallback defaults. * Width is automatically calculated using the aspect ratio to maintain proportions. */ export declare function calculateIconDimensions(options: CalculateIconDimensionsOptions): { width: number; height: number; }; interface CalculateIconDimensionsOptions { generatedAspectRatio: number; generatedHeight: number; size: IconSize | undefined; } export {}; //# sourceMappingURL=calculate-icon-dimensions.d.ts.map