import { BasePart, UiPartComponent, UiPartConfig } from '.'; import { TemplateResult } from '@blinkk/selective-edit'; import { Toast, ToastConfig } from '../toast'; export declare type ToastsPartConfig = UiPartConfig; /** * Toasts are centralized in the display to be outside of other * modals and structures. Toast elements live as siblings in the * DOM. */ export declare class ToastsPart extends BasePart implements UiPartComponent { config: ToastsPartConfig; toasts: Array; constructor(config: ToastsPartConfig); template(): TemplateResult; } export declare function showToast(toast: ToastConfig): void;