export type ArtifactType = "transcript" | "summary" | "recipe" | "webhook" | "memory" | "premortem" | "no-type"; export type Artifact = { id: string; name: string; createdAt: string; updatedAt: string; content: string; sourceUrl?: string | null; userEmail?: string | null; type: ArtifactType; repository: string; }; export type CreateArtifactRequest = { name: string; content: string; summary?: string | null; sourceUrl?: string | null; type?: ArtifactType | null; }; export declare const artifactsApi: { create: (args: CreateArtifactRequest) => Promise; get: (args: { id: string; }) => Promise; }; //# sourceMappingURL=artifacts.d.ts.map