/** * Text Space After Custom Component * A text component with hardcoded spacing after the paragraph * * This component is provided as an example of the legacy custom component system. * For new custom components, use the plugin system instead: * @see packages/core/src/plugin/example/ for modern examples */ import { Static } from '@sinclair/typebox'; import type { ComponentDefinition } from '@json-to-office/shared-docx'; /** * Props schema for text-space-after component */ declare const TextSpaceAfterPropsSchema: import("@sinclair/typebox").TObject<{ text: import("@sinclair/typebox").TString; spacing: import("@sinclair/typebox").TOptional; after: import("@sinclair/typebox").TOptional; }>>; }>; export type TextSpaceAfterProps = Static; /** * Text space after component - adds hardcoded spacing after paragraphs */ export declare const textSpaceAfterComponent: import("../plugin/createComponent").CustomComponent; after: import("@sinclair/typebox").TOptional; }>>; }>>; }, "text-space-after">; export {}; //# sourceMappingURL=text-space-after.d.ts.map