export interface Runtime { id: string; address: string; protocol?: string; type: string; label: string; description: string; registered: string; seen: string; user: string; secret: string | null; } export declare function runtimeTable(runtimes: Runtime[]): string;