import { VueConstructor } from 'vue';
export interface NavigateProps {
    to?: string | object;
    url?: string;
    replace?: boolean;
}
export default function navigate(instance: InstanceType<VueConstructor> & NavigateProps): void;
