import React from 'react'; import { CORE_VERSION, StyleWidgetName } from '@sunmao-ui/shared'; import { WidgetProps } from '../../../types/widget'; declare type Font = { fontSize?: string | number; fontWeight?: string | number; textAlign?: string; }; declare type FontWidgetType = `${typeof CORE_VERSION}/${StyleWidgetName.Font}`; declare module '../../../types/widget' { interface WidgetOptionsMap { 'core/v1/font': {}; } } export declare const FontWidget: React.FC>; declare const _default: { kind: string; impl: React.ComponentType>; version: string; metadata: { name: string; }; spec?: { options?: import("json-schema").JSONSchema7 | undefined; } | undefined; }; export default _default;