/// import { SmallToastProps, ToastProps } from "../Toast.interface"; export declare const onClickMock: jest.Mock; export declare class ToastObject { renderDefaultToast(props?: Partial): this; renderSmallToast(props?: Partial): this; get title(): HTMLElement; get description(): HTMLElement; get icon(): HTMLElement; get buttons(): HTMLElement[]; getButton(name: string): HTMLElement; clickButton(button: HTMLElement): Promise; }