import { SWUElement, SWUOptions } from "../types"; export interface SWURibbonOptions extends SWUOptions { ribbonPosition?: "bottom-left" | "bottom-right" | "top-left" | "top-right"; } export interface SWURibbonElement extends SWUElement { ribbonPosition?: "bottom-left" | "bottom-right" | "top-left" | "top-right"; type: "ribbon"; update: (options: SWURibbonOptions) => void; } export declare const mergeOptionsWithDefaults: (options?: SWURibbonOptions) => SWURibbonOptions;