import * as execa from "execa"; export default class Image { readonly name: string; readonly tag: string; readonly repository?: string | undefined; readonly filename: string; constructor(name: string, tag: string, repository?: string | undefined); static inferFromString(image: string): Image; toString: () => string; pull: () => Promise; runTag: (newImage: Image) => Promise; save: () => Promise; }