import './locales/i18n'; import './reset.css'; import 'highlight.js/styles/github.css'; import { LANGUAGE_TYPE, Theme } from './types/theme'; interface AppProps { spec: OpenAPI.OpenAPI31Spec; theme?: 'light' | 'dark'; themeOptions?: Theme | {}; language?: LANGUAGE_TYPE; targetKey?: string; onActiveChange?: any; options?: { hideCrumbs?: boolean; hideSideBar?: boolean; hideMeowPointList?: boolean; hideFooter?: boolean; defaultPackUpSideBar?: boolean; }; } export declare const App: ({ spec, theme, themeOptions, language, targetKey, onActiveChange, options }: AppProps) => import("react/jsx-runtime").JSX.Element; export default App;