/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from '@emotion/react'; import { ReactNode } from 'react'; import { Icons } from '../../types/theme'; export declare const ContainerWithIcon: ({ icon, children, maxWidth, }: { icon: Icons; children: ReactNode; maxWidth?: string | undefined; }) => jsx.JSX.Element;