@medalsocial/meda
Version:
Shared Meda UI shell and runtime package.
14 lines (13 loc) • 540 B
TypeScript
import type { EmailBuilderLabels } from './types.js';
interface FloatingBarProps {
labels: EmailBuilderLabels;
canMoveUp: boolean;
canMoveDown: boolean;
onMoveUp: () => void;
onMoveDown: () => void;
onDuplicate: () => void;
onDelete: () => void;
}
/** Per-block floating action bar. Rendered next to the selected block. */
export declare function FloatingBar({ labels, canMoveUp, canMoveDown, onMoveUp, onMoveDown, onDuplicate, onDelete, }: FloatingBarProps): import("react/jsx-runtime").JSX.Element;
export {};