/** Imperative toast API */ export type ToastPosition = 'top-left' | 'top-right' | 'top-center' | 'bottom-left' | 'bottom-right' | 'bottom-center'; export interface ToastOptions { message: string; variant?: 'success' | 'error' | 'warning' | 'info'; duration?: number; /** Where the toast container is anchored (default: 'top-right'). */ position?: ToastPosition; } export declare function showToast(options: ToastOptions, container?: HTMLElement): HTMLElement; //# sourceMappingURL=BqToast.d.ts.map