import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; import { RenderFunction } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare const _default: DefineComponent, { offsetTop: undefined; status: string; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { offsetTop: undefined; status: string; }>>> & Readonly<{}>, { status: "error" | "warning" | "info" | "success"; offsetTop: string; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>; export default _default; declare enum StatusSeverities { Error = "error", Warning = "warning", Info = "info", Success = "success" } declare type StatusSeverity = `${StatusSeverities}`; export declare interface ToastProps { /** * The toast text. */ text: string | RenderFunction; /** * The toast status. */ status?: StatusSeverity; /** * The container distance from the top of the viewport. */ offsetTop?: string; } export { }