import React from "react"; export type FormattedElementProps = { key: string; children: string | React.ReactNode[]; }; export declare const makeStyledJSX: (string: string) => React.ReactNode[] | string | null; export type StyledTextProps = { children: string; "data-e2e-test-id"?: string; }; export declare function StyledText({ children, "data-e2e-test-id": dataE2eTestId, }: StyledTextProps): React.ReactElement;