import { FocusEvent, KeyboardEvent } from 'react'; import { PB_ALIGNMENT, PB_FONT_FAMILY, PB_FONT_SIZE, PB_FONT_WEIGHT, PB_SPACE, PB_TYPE } from './types'; export declare type PageBreakProps = { id: string; title: string; type: PB_TYPE; alignment?: PB_ALIGNMENT; size?: PB_FONT_SIZE; weight?: PB_FONT_WEIGHT; spacing?: PB_SPACE; family?: PB_FONT_FAMILY; italic?: boolean; handleEnter?: (e: KeyboardEvent) => void; handleBlur?: (e: FocusEvent) => void; }; declare const PageBreak: ({ id, title, type, alignment, size, weight, family, spacing, italic, handleBlur, handleEnter, }: PageBreakProps) => JSX.Element; export default PageBreak;