{
    "Function": "transferOwnership",
    "File": "src/ConfirmedOwnerWithProposal.sol",
    "Parent Contracts": [
        "src/interfaces/OwnableInterface.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_transferOwnership",
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function transferOwnership(address to) public override onlyOwner {\n    _transferOwnership(to);\n  }"
}