import { Signer, BigNumberish } from "ethers";
import { Provider, TransactionRequest } from "@ethersproject/providers";
import { ContractFactory, Overrides } from "@ethersproject/contracts";
import type { ERC20WithSnapshot } from "./ERC20WithSnapshot";
export declare class ERC20WithSnapshotFactory extends ContractFactory {
    constructor(signer?: Signer);
    deploy(name: string, symbol: string, decimals: BigNumberish, overrides?: Overrides): Promise<ERC20WithSnapshot>;
    getDeployTransaction(name: string, symbol: string, decimals: BigNumberish, overrides?: Overrides): TransactionRequest;
    attach(address: string): ERC20WithSnapshot;
    connect(signer: Signer): ERC20WithSnapshotFactory;
    static connect(address: string, signerOrProvider: Signer | Provider): ERC20WithSnapshot;
}
