import { XmlAttributeComponent, XmlComponent } from "../../../../xml-components"; export interface IDocGridAttributesProperties { readonly linePitch?: number; } export declare class DocGridAttributes extends XmlAttributeComponent { protected readonly xmlKeys: { linePitch: string; }; } export declare class DocumentGrid extends XmlComponent { constructor(linePitch: number); }