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

declare function loadNavermapsScript(options: ClientOptions): Promise<typeof naver.maps>;
type Props = ClientOptions & {
    children: () => ReactElement;
};
declare function LoadNavermapsScript({ children: Children, ...options }: Props): react_jsx_runtime.JSX.Element | null;

export { LoadNavermapsScript, loadNavermapsScript };
