export type SimpleWorkload = { metadata?: { namespace?: string; }; spec?: { template?: { metadata?: { annotations?: { [key: string]: string; }; }; }; }; }; export type RemoteNetworkConfigRef = { confirm: () => Promise<{ valid: boolean; data: SimpleWorkload; }>; };