import type { IAssetAdapter } from "./types";
export interface IOriginAdapterOptions {
    baseUrl?: string;
    extension?: string;
}
/**
 * Default adapter. Resolves a filename to a remote URL on the origin, without any
 * caching. Reproduces the historical `getAssetPath` behavior.
 */
export declare class OriginAdapter implements IAssetAdapter {
    baseUrl: string;
    extension: string;
    constructor({ baseUrl, extension, }?: IOriginAdapterOptions);
    resolve(filename: string): string;
}
