import { IconifyIcon } from '@iconify/types';
import { SVGViewBox } from '../svg/viewbox.cjs';

/**
 * Make icon square
 */
declare function makeIconSquare(icon: Required<IconifyIcon>): Required<IconifyIcon>;
/**
 * Make icon viewBox square
 */
declare function makeViewBoxSquare(viewBox: SVGViewBox): SVGViewBox;

export { makeIconSquare, makeViewBoxSquare };
