import { Node } from "@tiptap/core"; import { defaultInboxActionProps, type InboxActionProps } from "./InboxAction.types"; declare module "@tiptap/core" { interface Commands { inboxAction: { setInboxAction: (props: Partial) => ReturnType; }; } } export { defaultInboxActionProps }; /** * The Inbox channel's action node. * * Shares nothing with the email `button`. Its attributes are the whole of what an Inbox action * stores — a label, a link, a style — so there is no default here that could be written into a * template as though an author had chosen it. See `InboxAction.types` for why that matters. */ export declare const InboxAction: Node;