export type ToastType = 'success' | 'error' | 'warning'; export type ToastTypes = { [key in ToastType]: string; }; export type ToastPosition = 'top' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; export declare interface FwToastProps { modelValue: boolean; type?: ToastType; position?: ToastPosition; content?: string; element?: string; timeout?: number; }