import { type ReactNode } from 'react'; import { type ButtonProperties } from '../button'; export type MessageCloseButtonProperties = { /** @required */ children: ReactNode; } & ButtonProperties; /** * Close button for message component. */ declare const MessageCloseButton: { ({ "aria-label": ariaLabel, children, ...remainingProps }: MessageCloseButtonProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default MessageCloseButton;