import React from 'react'; import type { ReactElement } from 'react'; import { ConfigType, OptionsType } from '@right-menu/core'; interface Props { options: OptionsType; theme: ConfigType['theme']; minWidth: ConfigType['minWidth']; maxWidth: ConfigType['maxWidth']; onBeforeInit: ConfigType['beforeInit']; onAfterInit: ConfigType['afterInit']; children: ReactElement; } declare const _default: React.NamedExoticComponent; export default _default;