import { UIRenderProps } from '@pdfme/common'; import type { TextSchema } from './types'; export declare const uiRender: (arg: UIRenderProps) => Promise; export declare const buildStyledTextContainer: (arg: UIRenderProps, value: string) => Promise; export declare const makeElementPlainTextContentEditable: (element: HTMLElement) => void; export declare const mapVerticalAlignToFlex: (verticalAlignmentValue: string | undefined) => "center" | "flex-end" | "flex-start"; export declare const getBackgroundColor: (value: string, schema: { backgroundColor?: string; }) => string;