import { AutoEncoder } from '@simonbackx/simple-encoding'; import { BaseOrganization } from '../Organization.js'; import { WebshopPreview } from './Webshop.js'; export declare class WebshopWithOrganization extends AutoEncoder { webshop: WebshopPreview; organization: BaseOrganization; /** * Proxy the webshop id so this object can be used in table/routing contexts * that require an id field (e.g. ModernTableView Route and useBackForward). */ get id(): string; /** * Convenience getter for the webshop's full public URL (including https:// protocol). */ get url(): string; /** * Returns the URL to the webshop management page in the dashboard. * Delegates to WebshopPreview.getDashboardUrl for deduplication. */ get dashboardUrl(): string; } //# sourceMappingURL=WebshopWithOrganization.d.ts.map