import { FocusEvent } from "react"; import { PageBreakProps } from "./PageBreak"; import { PB_LAYOUT } from "./types"; export declare const setDefaultMenu: (e: FocusEvent) => void; export declare const setMenuPosition: (e: FocusEvent) => void; declare type Props = { onUpdate: (id: string, field: string, value: string, callback?: (error: any, success?: any) => void) => void; onDelete: (id: string) => void; initialRename?: boolean; layout: PB_LAYOUT; }; declare const PrivatePageBreak: (props: Props & PageBreakProps) => JSX.Element; export default PrivatePageBreak;