import { default as React } from 'react'; import { IconName } from '../Icon'; export type InfoPanelType = 'neutral' | 'error' | 'success' | 'warning'; export type InfoPanelSize = 'small' | 'medium' | 'large'; export interface InfoPanelProps extends React.PropsWithChildren { type?: InfoPanelType; size?: InfoPanelSize; icon?: IconName; className?: string; onClick?: () => void; ariaLabel?: string; } declare function InfoPanel(props: InfoPanelProps): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;