import * as React from 'react'; import { TypographyProps } from '@mui/material/Typography'; import { LinkProps } from "../Link/index.js"; interface GlowingIconContainerProps { icon: React.ReactNode; } export declare function GlowingIconContainer({ icon }: GlowingIconContainerProps): import("react/jsx-runtime").JSX.Element; interface InfoCardProps { classNameDescription?: string; classNameTitle?: string; description?: string; icon?: React.ReactNode; link?: string; prefetch?: LinkProps['prefetch']; svg?: React.ReactNode; title: string; titleProps?: TypographyProps; } export declare function InfoCard(props: InfoCardProps): import("react/jsx-runtime").JSX.Element; export {};