/** * Internal dependencies */ import type { SnackbarNotification } from '../components'; export interface SnackbarState { showSnackbar: (snackbar: Omit) => void; clearSnackbar: () => void; removeSnack: (toRemove: SnackbarNotification | SnackbarNotification[]) => void; currentSnacks: SnackbarNotification[]; placement: string; } //# sourceMappingURL=snackbar.d.ts.map