export type ToastStackPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; /** * @slot (default) - where all toasts go */ export declare class RuxToastStack { el: HTMLRuxToastStackElement; /** * position of toast stack in viewport */ position: ToastStackPosition; /** * Adds an individual toast to the stack with the set props passed in as an object. * Accepts any key's that match rux-toast props (message, hideClose, ect). */ addToast(props: { [x: string]: any; hasOwnProperty: (arg0: string) => any; }): Promise; get _toastsArray(): HTMLRuxToastElement[]; render(): any; }