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