import { FC } from 'react';
import { Props } from './ToastContent.types';
import './ToastContent.style.scss';
/**
 * The `<ToastContent />` component. This component is meant to be consumed by only the `<Toast />` component.
 */
declare const ToastContent: FC<Props>;
export default ToastContent;
