import { IconProps as PoutineIconProps } from "../Icon"; import { AlertProps } from './Alert'; export interface IconProps extends Omit { variant?: AlertProps['variant']; name?: PoutineIconProps['name']; } export declare const Icon: ({ variant, name, size, ...rest }: IconProps) => import("react/jsx-runtime").JSX.Element;