import { CustomElementView, HTMLView } from '../';
/**
* Sets the container element where new alerts will be appended.
* @param parent - The HTMLView element to use as the alert container
*/
export declare function setAlertParent(parent: HTMLView): void;
export declare class Alert extends CustomElementView {
ready(): void;
open(duration?: number): Promise;
close(): Promise;
}