import * as React from "react"; import type { Mark, UseMarkConfig } from "@/components/editor/tiptap-ui/mark-button"; import type { ButtonProps } from "@/components/editor/tiptap-ui-primitive/button"; export interface MarkButtonProps extends Omit, UseMarkConfig { /** * Optional text to display alongside the icon. */ text?: string; /** * Optional show shortcut keys in the button. * @default false */ showShortcut?: boolean; } export declare function MarkShortcutBadge({ type, shortcutKeys, }: { type: Mark; shortcutKeys?: string; }): import("react/jsx-runtime").JSX.Element; /** * Button component for toggling marks in a Tiptap editor. * * For custom button implementations, use the `useMark` hook instead. */ export declare const MarkButton: React.ForwardRefExoticComponent>; //# sourceMappingURL=mark-button.d.ts.map