import { AlertType } from "./alert.model";
export interface TccSnackbarOptions {
    message: string;
    header?: string;
    durationinseconds?: number;
    snackType?: AlertType;
    secondbuttoncaption?: string;
    noButton?: boolean;
}
export declare enum TccSnackbarEventType {
    Action = "action",
    Close = "close",
    Timeout = "timeout"
}
