import * as React from 'react'; import type { ExtendsUnion, FontWeight, TextColor } from '@latitude-data/client'; export type AlertFontWeight = ExtendsUnion; type Props = React.HTMLAttributes & { fontWeight?: AlertFontWeight; color: TextColor; centered?: boolean; children: React.ReactNode; }; declare function AlertText({ fontWeight, centered, color, children, ...props }: Props): import("react/jsx-runtime").JSX.Element; export default AlertText; //# sourceMappingURL=text.d.ts.map