import { Refkey, SymbolCreator } from "@alloy-js/core"; export interface LibraryDescriptor { [pkg: string]: string[]; } export type LibraryRefkeys = { [S in T[keyof T] extends readonly string[] ? T[keyof T][number] : never]: Refkey; }; export interface CreateLibraryProps { groupId: string; artifactId: string; version: string; descriptor: T; } export declare function createLibrary(props: CreateLibraryProps): LibraryRefkeys & SymbolCreator; //# sourceMappingURL=create-library.d.ts.map