import { IEndpointReflection, IGenerators, IImportReflection, IInterfaceReflection } from "@leight-core/leight"; import type ts from "typescript"; export declare function exportImport(node: ts.Node, sourceFile: ts.SourceFile): IImportReflection | false; export declare function exportInterface(node: ts.Node, sourceFile: ts.SourceFile): IInterfaceReflection | false; export declare function exportEndpoint(node: ts.Node, sourceFile: ts.SourceFile, generators: IGenerators): IEndpointReflection | false;