/** * @file /src/constants/body.ts * @name Body * @description Constants for body node in the editor. */ import { NodeAttributes } from "../types/node"; import { BodyNodeAttributes } from "../types/body"; export declare const BODY_NODE_NAME: "body"; /** * Lookup keys for body node attributes. */ export declare const BODY_NODE_ATTR_KEYS: { readonly pageMargins: "pageMargins"; }; /** * The default body node attributes. */ export declare const BODY_DEFAULT_ATTRIBUTES: BodyNodeAttributes; /** * The body node attributes. */ export declare const BODY_ATTRIBUTES: NodeAttributes; //# sourceMappingURL=body.d.ts.map