/** * An abstract class for injecting the ability to retrieve an asset file's URL at runtime. * The implementing class will be generated during build time. */ declare abstract class SkyAppAssetsService { abstract getUrl(path: string): string; abstract getAllUrls(): Record; } export { SkyAppAssetsService };