import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface RibbonProps extends HTMLAttrs { children?: ReactNode variant?: Variant left: Boolean top: Boolean wrap: Boolean } declare const Ribbon: ComponentType export default Ribbon