import { CI, Environment } from './Environment'; import { Git } from './Git'; import { Github } from './Github'; import { IBuilderMessages, IO } from './IO'; declare class Provider { private static instance; readonly env: Environment; readonly io: IO; readonly git: Git; readonly github: Github; private constructor(); static getInstance(): Provider; } export { CI, Environment, IBuilderMessages, IO, Git, Github, Provider, };