import { type VariableViewMode } from "@/components/TemplateEditor/store"; import type { Transaction } from "@tiptap/pm/state"; import type { Editor } from "@tiptap/react"; interface BrandFooterProps { value?: string | null; variables?: Record; readOnly?: boolean; variableViewMode?: VariableViewMode; facebookLink?: string; linkedinLink?: string; instagramLink?: string; mediumLink?: string; xLink?: string; onUpdate?: (props: { editor: Editor; transaction: Transaction; }) => void; } export declare const BrandFooter: import("react").MemoExoticComponent<({ facebookLink, linkedinLink, instagramLink, mediumLink, xLink, readOnly, value, variableViewMode, onUpdate, }: BrandFooterProps) => import("react/jsx-runtime").JSX.Element>; export {};