import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { ClientOptions } from './types/client.js';

type Props = ClientOptions & {
    children?: ReactNode;
};
declare function NavermapsProvider({ children, ...clientOptions }: Props): react_jsx_runtime.JSX.Element;

export { NavermapsProvider, type Props };
