/** * Get the session id for the passed in store. If the session is not found, * open the browser to login and return the session id. * * @param storeId - The store to get the session id for * @returns A promise that resolves to the session id */ declare function getSessionIdOrLoginInBrowser(storeId?: string | undefined): Promise; export { getSessionIdOrLoginInBrowser };