import * as react_jsx_runtime from 'react/jsx-runtime'; interface Props { href: string; text?: string; width?: string | number; height?: string | number; bgColor?: string; textColor?: string; } /** * # ForkMe * Fork me ribbon * * @param {React.ReactNode} [props.children] * @returns {React.ReactElement} */ declare function ForkMe({ href, text, width, height, bgColor, textColor }: Props): react_jsx_runtime.JSX.Element; export { ForkMe };