import { MessageDirection } from '../message'; export type ToastSize = 'large' | 'medium'; export type ToastKind = 'info' | 'success' | 'error'; export declare const ToastPosition: { readonly TOP_RIGHT: "top-right"; readonly TOP_CENTER: "top-center"; readonly BOTTOM_RIGHT: "bottom-right"; readonly BOTTOM_CENTER: "bottom-center"; readonly CENTER: "center"; }; export type ToastPositionType = (typeof ToastPosition)[keyof typeof ToastPosition]; export type ToastDirection = MessageDirection;