import { Cluster } from '@c6o/kubeclient-contracts'; import { AppResource, AppHelper as AppHelperContract } from '@provisioner/contracts'; export declare class AppHelper extends AppHelperContract { static template: (namespace?: string, name?: string) => AppResource; static from: (namespace?: string, name?: string) => AppHelper; read(cluster: Cluster, errorMessage?: string): Promise; list(cluster: Cluster, errorMessage?: string): Promise; static byInterface(cluster: Cluster, interfaceName: string, errorMessage?: string): Promise>; }