import { type FunctionComponent } from "react"; import { type ScrollViewProps, type StyleProp, type TextStyle, type ViewStyle } from "react-native"; import { type SyntaxHighlighterProps } from "react-syntax-highlighter"; import { type ReactStyle } from "./../utils/styles"; export interface CodeHighlighterProps extends SyntaxHighlighterProps { hljsStyle: ReactStyle; textStyle?: StyleProp; scrollViewProps?: ScrollViewProps; /** * @deprecated Use scrollViewProps.contentContainerStyle instead */ containerStyle?: StyleProp; } export declare const CodeHighlighter: FunctionComponent; export default CodeHighlighter; //# sourceMappingURL=CodeHighlighter.d.ts.map