import { PreviewThemes } from 'md-editor-rt'; import { default as React, ReactNode } from 'react'; import { CommomProps } from '../../common/props'; interface Props extends CommomProps { value: string; onChange: (value: PreviewThemes) => void; options?: Array<{ value: string; label: string; }>; extraOptions?: Array<{ value: string; label: string; }>; closeAfterSelect?: boolean; children?: ReactNode; } declare const ThemeDropdown: (props: Props) => React.JSX.Element; export default ThemeDropdown;