import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ToastPosition` - Defines the position of a toast notification within a container. * * @public */ export declare const ToastPosition: { /** * `bottom` - Displays the toast at the bottom of a container. */ readonly Bottom: "bottom"; /** * `middle` - Displays the toast at the middle of a container. */ readonly Middle: "middle"; /** * `top` - Displays the toast at the top of a container. */ readonly Top: "top"; }; /** * @public */ export type ToastPosition = ValuesOf; //# sourceMappingURL=ToastPosition.d.ts.map