import Command from "./Command"; declare class MakeProviderCommand extends Command { protected signature: string; protected description: string; handle(): Promise<0 | 1>; } export default MakeProviderCommand;