/**
 * Creates the Rollup-compatible plugin that gives authored modules a small
 * asset-module surface for non-code relative imports inside the authored
 * package. Assets may sit outside the agent directory, but not outside the
 * package that owns it.
 */
export declare function createAuthoredAssetImportPlugin(input: {
    readonly packageRoot: string;
}): Record<string, unknown>;
