import { NotificationVariants } from '../internal/notification'; export type NotificationProviderProps = { children: React.ReactNode; }; export type ShowNotification = { descriptionText: string; testID?: string; titleText: string; variant: NotificationVariants; };