import { Node } from './Node';
/**
 * Generates the imports from the haystack-core library.
 */
export declare class HaystackCoreImportNode implements Node {
    readonly types: Set<string>;
    readonly newLines = 1;
    constructor(types?: string[]);
    generateCode(out: (code: string) => void): void;
}
