import { WithSignerCommand, WithSignerCommandParams, WithSignerConstructorParams } from '@tasks'; interface DeployStableCoinFactoryBaseParams { tokenManagerAddress?: string; } interface DeployStableCoinFactoryCommandParams extends WithSignerCommandParams, DeployStableCoinFactoryBaseParams { } interface ConstructorParams extends WithSignerConstructorParams, DeployStableCoinFactoryBaseParams { } export default class DeployStableCoinFactoryCommand extends WithSignerCommand { readonly tokenManagerAddress?: string; protected constructor({ tokenManagerAddress, ...args }: ConstructorParams); static newInstance(args: DeployStableCoinFactoryCommandParams): Promise; } export {};