import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const Toast: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Toast position (only on wide screens). Can be `left`, `center` or `right` */ position: { type: PropType<'left' | 'center' | 'right'>; default: 'left'; }; /** * Allows to open/close Toast and set its initial state */ opened: { type: BooleanConstructor; default: false; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'bg-ios-light-glass dark:bg-ios-dark-glass' */ bgIos?: string; /** * * @default 'bg-md-light-surface-5 dark:bg-md-dark-surface-5' */ bgMaterial?: string; /** * * @default '' */ textIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ textMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default Toast;