export declare class Import {
    names: string[];
    from: string;
    constructor(names: string[], from: string);
    path(): string;
}
