type LatexStyle = 'border' | 'font-size' | 'line-height' | 'color' | 'background-color'; type LatexStyleMap = Partial>; type InnerContainerStyle = 'padding' | 'border' | 'font-size' | 'line-height' | 'width' | 'height' | 'color' | 'background-color'; type InnerContainerMap = Partial>; type ContainerStyle = 'padding' | 'width' | 'backgroundColor' | 'borderWidth' | 'borderColor'; type ContainerMap = Partial>; declare const KaTeXAutoHeightWebView: ({ source, onHeightChange, minHeight, containerStyle, ...webViewProps }: { source: string; onHeightChange?: (height: number) => void; minHeight?: number; containerStyle?: ContainerMap; [key: string]: any; }) => import("react/jsx-runtime").JSX.Element; declare const createKaTeXHTML: (latexContent: string, containerStyles?: InnerContainerMap, latexStyles?: LatexStyleMap) => string; export { KaTeXAutoHeightWebView, createKaTeXHTML }; //# sourceMappingURL=katex.d.ts.map