import type { LocationQuery } from 'vue-router'; import { APPS } from './constants'; type AppValues = (typeof APPS)[keyof typeof APPS]; export interface ContextSwitcherProps { /** * The current app that is active. Choices are 'marketplace' | 'payments'. */ activeApp: AppValues; /** * Portal access to both marketplace and payments. */ portalAccess?: { commercePortal: boolean; paymentsPortal: boolean; }; /** * Url to replace the other app if current user does not have portal access. */ limitedAccessUrl: string; routeQuery?: LocationQuery; } declare const __VLS_export: import("vue").DefineComponent any; click: (urlInfo: { from: string; to: string; }) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onSwitch?: ((evt: MouseEvent, urlInfo: { from: string; to: string; }) => any) | undefined; onClick?: ((urlInfo: { from: string; to: string; }) => any) | undefined; }>, { portalAccess: { commercePortal: boolean; paymentsPortal: boolean; }; routeQuery: LocationQuery; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;