/// import * as NAST from "nast-types"; export interface SemanticStringArrayProps { semanticStringArray: NAST.SemanticString[]; /** Whether the content is code. */ isCode?: boolean; /** One of programming languages listed in `../legacy/util-prismjs.ts`. */ codeLang?: string; /** * Do not render interactive elements such as ``. * See https://stackoverflow.com/questions/7863554/is-it-ok-to-have-an-a-inside-another-a */ noInteractive?: boolean; } export interface SemanticStringProps { semanticString: NAST.SemanticString; isCode?: boolean; codeLang?: string; noInteractive?: boolean; } export declare function SemanticStringArray(props: SemanticStringArrayProps): JSX.Element; export declare function SemanticString(props: SemanticStringProps): JSX.Element; //# sourceMappingURL=SemanticString.d.ts.map