import { EventEmitter } from "@angular/core"; import { Snackbar } from "./snackbar.interface"; import { SnackbarService } from "./snackbar.service"; export declare class SnackbarComponent { private snackbarService; position: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right"; max: number; background: string; accent: string; color: string; customClass: any; timeout: number; onAdd: EventEmitter; onRemove: EventEmitter; onClear: EventEmitter; snacks: Array; constructor(snackbarService: SnackbarService); add(snack: any): void; onClick(snack: any): void; remove(id: any): void; clear(): void; uuid(): string; calcTextColor(background: any): "#000" | "#fff"; }