export declare const storefrontInit = "\n if acct.storage.borrow<&NFTStorefrontV2.Storefront>(from: NFTStorefrontV2.StorefrontStoragePath) == nil {\n\n // Create a new empty Storefront\n let storefront <- NFTStorefrontV2.createStorefront() as! @NFTStorefrontV2.Storefront\n\n // save it to the account\n acct.storage.save(<-storefront, to: NFTStorefrontV2.StorefrontStoragePath)\n\n // create a public capability for the Storefront\n let storefrontPublicCap = acct.capabilities.storage.issue<&{NFTStorefrontV2.StorefrontPublic}>(\n NFTStorefrontV2.StorefrontStoragePath\n )\n acct.capabilities.publish(storefrontPublicCap, at: NFTStorefrontV2.StorefrontPublicPath)\n }\n";