/** * Copyright 2023 Kapeta Inc. * SPDX-License-Identifier: BUSL-1.1 */ import { BlockDefinition } from '@kapeta/schemas'; export declare class PredefinedBlock { archetype: string; kapetaYml: string; gitRepo: { owner: string; repo: string; path: string; }; constructor(archetype: string, kapetaYml: string, gitRepo: { owner: string; repo: string; path: string; }); getGitRepo(): { owner: string; repo: string; path: string; }; private getKapetaYML; getBlockDefinition(): Promise; } export declare const PREDEFINED_BLOCKS: Map;