/** * @jsxRuntime classic * @jsx jsx */ import type { CommonSlotProps } from './types'; type RibbonProps = CommonSlotProps & { width: string | number; children: React.ReactNode; }; export declare function UNSAFE_Ribbon({ children, testId, id: providedId, width, }: RibbonProps): JSX.Element | null; export {};