/// import { PB_LAYOUT, PB_TYPE } from "./types"; declare type Props = { id: string; selectTitle: () => void; openFormating: () => void; onDelete: (id: string) => void; onUpdate: (id: string, field: string, value: string) => void; type: PB_TYPE; layout: PB_LAYOUT; }; declare const Menu: ({ id, selectTitle, onDelete, openFormating, onUpdate, type, layout, }: Props) => JSX.Element; export default Menu;