import { FetchState } from '@zeniai/client-epic-state'; /** * Component & its Props */ interface Props { fetchState: FetchState; customMessageText?: string; isUpdate?: boolean; onRemoveSnackbar: () => void; } export default function SubscriptionSnackBar(props: Props): import("react/jsx-runtime").JSX.Element; export {};