import React from 'react'; import { ToastContent } from 'react-toastify'; import { CTA } from '../toast'; interface ToastWrapperProps { content: ToastContent; cta?: CTA; } declare const InnerLayout: ({ content, cta }: ToastWrapperProps) => React.JSX.Element; export default InnerLayout;