import type { Colors, ElProps } from '..'; declare type RibbonPositions = undefined | 'top' | 'start' | 'end' | 'bottom'; export interface RibbonProps extends Partial { bgColor?: Colors; elementPosition?: RibbonPositions; } export {};