import React, { HTMLAttributes } from "react";
import { Colors } from "../colors";
export interface RibbonProps extends HTMLAttributes {
position?: 'topStart' | 'topEnd' | 'bottomStart' | 'bottomEnd' | 'start' | 'end' | 'top' | 'bottom';
color?: Colors;
bookmark?: boolean;
}
declare const Ribbon: ({ className, position, children, color, bookmark, ...props }: RibbonProps) => React.JSX.Element;
export default Ribbon;