import { Plugin } from '@umijs/runtime';
interface IOpts {
routes: any[];
plugin: Plugin;
history?: any;
defaultTitle?: string;
rootElement?: string | HTMLElement;
path?: string;
callback?: () => void;
}
export declare function renderClient(opts: IOpts): any;
export {};