import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IERC20Burnable, IERC20BurnableInterface } from "../IERC20Burnable";
export declare class IERC20Burnable__factory {
    static readonly abi: readonly [{
        readonly type: "function";
        readonly name: "burn";
        readonly inputs: readonly [{
            readonly name: "amount";
            readonly type: "uint256";
            readonly internalType: "uint256";
        }];
        readonly outputs: readonly [];
        readonly stateMutability: "nonpayable";
    }, {
        readonly type: "function";
        readonly name: "burnFrom";
        readonly inputs: readonly [{
            readonly name: "account";
            readonly type: "address";
            readonly internalType: "address";
        }, {
            readonly name: "amount";
            readonly type: "uint256";
            readonly internalType: "uint256";
        }];
        readonly outputs: readonly [];
        readonly stateMutability: "nonpayable";
    }];
    static createInterface(): IERC20BurnableInterface;
    static connect(address: string, signerOrProvider: Signer | Provider): IERC20Burnable;
}
