import type { IIcon } from "../config/types/index.d.mts"; /** * Получает свойства для элемента `svg` * @returns HTMLAttributes */ export declare const getSvgAttrs: (size: IIcon["size"]) => Partial<{ width: number | string; height: number | string; }>;