import * as React from 'react'; declare const InlineMessageContainer: React.ForwardRefExoticComponent, HTMLDivElement>, "theme"> & { theme?: "neutral" | "success" | "warning" | "info" | "error" | undefined; } & { as?: React.ElementType; }>; type TInlineMessageProps = React.ComponentProps & { showIcon?: boolean; size?: 'xs' | 'sm' | 'md'; }; export declare const InlineMessage: ({ className, showIcon, theme, size, children, ...rest }: TInlineMessageProps) => React.JSX.Element; export {};