import { WithSignerCommand, WithSignerCommandParams, WithSignerConstructorParams } from '@tasks'; interface DeployAllCommandBaseParams { useDeployed?: boolean; useEnvironment?: boolean; partialBatchDeploy?: boolean; } interface DeployAllCommandParams extends WithSignerCommandParams, DeployAllCommandBaseParams { } interface ConstructorParams extends WithSignerConstructorParams, DeployAllCommandBaseParams { } export default class DeployAllCommand extends WithSignerCommand { readonly useDeployed: boolean; readonly useEnvironment: boolean; readonly partialBatchDeploy: boolean; constructor({ useDeployed, useEnvironment, partialBatchDeploy, ...args }: ConstructorParams); static newInstance(args: DeployAllCommandParams): Promise; } export {};