import { PropsWithChildren } from 'react'; import { NotificationProps } from './Notification'; import { AlertVariant } from './types'; export type InPageAlertProps = Omit & { /** * ARIA role. Defaults to "alert". */ role?: 'alert' | 'status' | ''; /** * Alert variant. Defaults to "info". */ variant?: AlertVariant; }; export declare const InPageAlert: import('react').ForwardRefExoticComponent, "ref"> & import('react').RefAttributes>;