import { type WidgetProduct } from '@astral/ui'; import { type MouseEvent } from 'react'; import { type IdentityTenantsDTO } from '../../../types'; export declare const useLogic: (identityUrl: string, openMenu: () => void) => { handleShowProducts: () => void; isLoading: boolean; isError: boolean; tenants: IdentityTenantsDTO[] | undefined; handleChangeTenant: (_event: MouseEvent, selectedValue: string) => void; tenantId: string; productList: WidgetProduct[] | undefined; isShowToggleButton: boolean; };