import { ToastService } from './toast.service';
export declare class ToastComponent {
private toastService;
constructor(toastService: ToastService);
visible: boolean;
message: string;
actionText: string;
actionHandler: Function;
hasAction(): boolean;
onClick(): void;
}