import { Node } from "@tiptap/core"; import type { ButtonRowProps } from "./ButtonRow.types"; declare module "@tiptap/core" { interface Commands { buttonRow: { setButtonRow: (props: Partial) => ReturnType; }; } } /** * A row carries no colors of its own. The look comes from each button's style, drawn the way * the Inbox draws it (see `actionLookFromStyle`), so the canvas matches what gets delivered. * * These were defaults rather than written values, which made them easy to miss: nothing set * them, but every row still had them, and the converter emits whatever a node carries. A * default here is the same as writing the color on every button in the product. */ export declare const defaultButtonRowProps: ButtonRowProps; export declare const ButtonRow: Node;