import type { ConnectorDeclaration } from "./connector-types.js"; /** Parse a generated CONNECTOR.md (runtime projection) into a ConnectorDeclaration. */ export declare function fromMaterializedConnectorMd(filePath: string, name: string): ConnectorDeclaration; /** Derive a single materialized connector declaration; null when no CONNECTOR.md. */ export declare function deriveSingleMaterializedConnectorDeclaration(connectorAssetsDir: string, name: string): ConnectorDeclaration | null; /** Scan `/.skaile/assets/connector/*` for materialized connectors. */ export declare function loadMaterializedConnectorDeclarations(projectDir: string): ConnectorDeclaration[]; //# sourceMappingURL=materialized-connectors.d.ts.map