export interface IGoParams { replace?: boolean; title?: string; state?: any; } export declare type TGo = (page: string, params?: IGoParams) => void; declare const go: TGo; export default go;