import ts from 'typescript'; export declare function getImportClause(node: ts.ImportDeclaration): ts.ImportClause | undefined; export declare function getNamespaceImport(node: ts.ImportDeclaration): ts.NamespaceImport | undefined; export declare function getNamespaceImportIdentifier(node: ts.ImportDeclaration): ts.Identifier | undefined; export declare function getDefaultImport(node: ts.ImportDeclaration): ts.Identifier | undefined; export declare function getNamedImports(node: ts.ImportDeclaration): ReadonlyArray;