export interface WdkSnackBarData { /** * Optional Snackbar icon. If not present, no icon will be displayed. */ iconName?: string; /** * Snackbar message */ message: string; /** * Optional Snackbar button label. If not present, button will not be shown. */ buttonLabel?: string; /** * Snackbar duration (in seconds) on how long it stays visible */ duration: number; }