/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { FC } from 'react';
import type { IconAppearance } from '../../types';
interface MessageIconProps {
    appearance: IconAppearance;
    isOpen: boolean;
    label?: string;
}
/**
 * __Selected icon__
 *
 * The selected icon is used as the primary interactive element for the dialog.
 * Can be used with or without supporting text.
 */
declare const SelectedIcon: FC<MessageIconProps>;
export default SelectedIcon;
