import type { ExtractPropTypes, PropType, SlotsType } from 'vue'; export declare const ribbonProps: { direction: { type: PropType<"top-right" | "top-left" | "bottom-right" | "bottom-left">; default: string; }; gap: { type: NumberConstructor; default: number; }; size: { type: NumberConstructor; default: number; }; breadth: { type: NumberConstructor; default: number; }; background: { type: StringConstructor; }; color: { type: StringConstructor; }; }; export type RibbonProps = ExtractPropTypes; export interface RibbonSlots { default: {}; } export declare const ribbonSlots: SlotsType; export declare const ribbonEmits: {}; export type RibbonEmits = typeof ribbonEmits; export interface RibbonExpose { }