import type { ISnackbarItem } from './ISnackbarItem'; export interface ISnackbarProps { items: ISnackbarItem[]; position?: 'left' | 'center' | 'right'; }