import { type Expression } from 'typescript';
import { Compilable } from '../compilable.js';
import { Importer } from '../importer.js';
export declare class Importation extends Compilable {
    private readonly path;
    private readonly symbol;
    private constructor();
    compile(importer: Importer): Expression;
    static module(path: string): Importation;
    static default(path: string): Importation;
    static named(path: string, symbol: string): Importation;
}
//# sourceMappingURL=importation.d.ts.map