import { Shop } from "../models/shop/shop.model";
import { Product } from "../models/shop/product/product.model";
export declare class URLS {
    selldone_url: string;
    selldone_iframe_url: string;
    constructor();
    MainServiceUrl(): string;
    StripeLandingLoginPage(): string;
    AdminShopsURL(): string;
    AdminShopURL(shop_id: string | number): string;
    UserSettingURL(): string;
    ARViewURL(shop_name: string, product_id: string | number, variant_id: string | number, folder_name: string): string;
    CommunityPostUrl(base_url: string, post_id: string | number): string;
    CommunityPostEmbedUrl(base_url: string, post_id: string | number): string;
    ProductIframeUrl(shop: Shop, product: Product): string;
}
