import type { RenderFunction } from 'vue'; import type { StatusSeverity } from '../types/statusLevels'; export interface ToastProps { /** * The toast text. */ text: string | RenderFunction; /** * The toast status. */ status?: StatusSeverity; /** * The container distance from the top of the viewport. */ offsetTop?: string; } declare const __VLS_export: import("vue").DefineComponent & Readonly<{}>, { status: StatusSeverity; offsetTop: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;