import * as TextStyle from "./text-style.js"; import * as LayoutFoundation from "../primitives/layout-foundation.js"; import * as Position from "./position.js"; export type TextAlignment = "Start" | "Center" | "End" | "Justify"; export interface ParagraphStyle { readonly type: "ParagraphStyle"; readonly position: Position.Position; readonly alignment?: TextAlignment; readonly margins: LayoutFoundation.LayoutFoundation; readonly textStyle: TextStyle.TextStyle; } export interface ParagraphStyleProps { readonly position?: Position.Position; readonly alignment?: TextAlignment; readonly margins?: LayoutFoundation.LayoutFoundation; readonly textStyle?: TextStyle.TextStyle; } export declare function create(props?: ParagraphStyleProps): ParagraphStyle; export declare function overrideWith(overrider: ParagraphStyle | undefined, toOverride: ParagraphStyle | undefined): ParagraphStyle; //# sourceMappingURL=paragraph-style.d.ts.map