export interface QiankunProps { container?: HTMLElement; [x: string]: any; } export declare type QiankunLifeCycle = { bootstrap: () => void | Promise; mount: (props: QiankunProps) => void | Promise; unmount: (props: QiankunProps) => void | Promise; update: (props: QiankunProps) => void | Promise; }; export interface QiankunWindow { __POWERED_BY_QIANKUN__?: boolean; [x: string]: any; } export declare const qiankunWindow: QiankunWindow; export declare const renderWithQiankun: (qiankunLifeCycle: QiankunLifeCycle) => void; export default renderWithQiankun;