import { LineSpacing, ParagraphProperty } from "./paragraph-property"; import { RunProperty, RunFonts } from "./run-property"; export declare class DocDefaults { runProperty: RunProperty; paragraphProperty: ParagraphProperty; size(size: number): this; fonts(fonts: RunFonts): this; characterSpacing(characterSpacing: number): this; lineSpacing(lineSpacing: LineSpacing): this; }