import { SCToastRef, SCToastAction } from './sc-toast-ref'; import * as i0 from "@angular/core"; /** * A component used to open as the default snack bar, matching material spec. * This should only be used internally by the snack bar service. */ export declare class SCSimpleToast { toastRef: SCToastRef; /** Data that was injected into the snack bar. */ data: { message: string; actions: SCToastAction[]; }; constructor(toastRef: SCToastRef, data: any); handleActionClicked(event: MouseEvent, action: SCToastAction): void; /** Performs the action on the snack bar. */ dismiss(): void; /** If the action button should be shown. */ get hasAction(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }