import { FC, PropsWithChildren } from 'react'; import { AlertContextState } from './context.js'; import '../../types.js'; type AlertProviderProps = AlertContextState; declare const AlertProvider: FC>; export { AlertProvider };