import { type BoxProps } from '../Box'; import { type IconProps } from '../Icon'; export type ModalIconProps = BoxProps & { name: IconProps['name']; }; declare const ModalIcon: ({ size, name, alignItems, ...props }: ModalIconProps) => import("react/jsx-runtime").JSX.Element; export default ModalIcon; //# sourceMappingURL=ModalIcon.d.ts.map