import { DekPluginElementProps } from '@appkit/dek-plugin'; type Props = DekPluginElementProps & { text?: string; clear?: boolean; backColor?: string; textSize?: number; textWeight?: 'normal' | 'bold'; textStyle?: any; underlineWidth?: number; }; declare const CenteredText: ({ text, clear, backColor, textSize, textWeight, textStyle, underlineWidth, }: Props) => import("react/jsx-runtime").JSX.Element; export default CenteredText;