export interface Exported { exported?: boolean; isDefault?: boolean; } export interface Import { name: string; from: string; alias?: string; isDefault?: boolean; } export declare class Imports { private imports; private constructor(); addImport(name: string, from: string, alias?: string): void; addDefaultImport(from: string, alias?: string): void; getImports(): string; static create(): Imports; }