import type { EditableNodeAttributes } from "../types"; interface DividerProps extends EditableNodeAttributes { label?: string; color?: string; spacing?: "sm" | "md" | "lg"; weight?: "sm" | "md" | "lg"; className?: string; } export declare function Divider({ label, color, spacing, weight, className, "data-node-id": dataNodeId }: DividerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Divider.d.ts.map