import { UBXColor } from '../color/color.enum'; export declare class UBXToast { type: UBXColor; position: UBXToastPosition; label: string; message: string; timer: number; } export declare enum UBXToastPosition { TopLeft = 0, TopRight = 1, BottomLeft = 2, BottomRight = 3 }