export declare function createBasicAuthHeader(username: string, password: string): string; export type CreateOrgProjectAndApiKeyOptions = { projectId?: string; plan?: "Team" | "Hobby" | "Core" | "Pro" | "Enterprise"; }; export declare const createOrgProjectAndApiKey: (props?: CreateOrgProjectAndApiKeyOptions) => Promise<{ projectId: string; orgId: string; publicKey: string; secretKey: string; auth: string; org: { id: string; name: string; metadata: import("@prisma/client/runtime/library").JsonValue | null; createdAt: Date; updatedAt: Date; cloudConfig: import("@prisma/client/runtime/library").JsonValue | null; }; project: { id: string; name: string; metadata: import("@prisma/client/runtime/library").JsonValue | null; createdAt: Date; updatedAt: Date; orgId: string; deletedAt: Date | null; retentionDays: number | null; }; }>; //# sourceMappingURL=org-factory.d.ts.map