import { addAnimationController } from '../../animations/player.js';
import { IgcBaseAlertLikeComponent } from '../common/mixins/alert.js';
/**
 * A toast component is used to show a notification
 *
 * @element igc-toast
 *
 * @csspart base - The base wrapper of the toast.
 */
export default class IgcToastComponent extends IgcBaseAlertLikeComponent {
    static readonly tagName = "igc-toast";
    static styles: import("lit").CSSResult[];
    protected _animationPlayer: ReturnType<typeof addAnimationController>;
    static register(): void;
    protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'igc-toast': IgcToastComponent;
    }
}
