export type BreakType = "page" | "column" | "textWrapping"; export declare class Break { type: BreakType; constructor(type: BreakType); }