import { Logger } from "@uma/financial-templates-lib"; import type { BigNumber } from "ethers"; export declare const logLargeUnstake: (logger: typeof Logger, unstake: { tx: string; address: string; amount: string; }, chainId: number) => void; export declare const logLargeStake: (logger: typeof Logger, stake: { tx: string; address: string; amount: string; }, chainId: number) => void; export declare const logGovernanceProposal: (logger: typeof Logger, proposal: { tx: string; id: string; }, chainId: number) => void; export declare const logEmergencyProposal: (logger: typeof Logger, proposal: { tx: string; id: string; sender: string; }, chainId: number) => void; export declare const logDeleted: (logger: typeof Logger, request: { tx: string; identifier: string; time: BigNumber; ancillaryData: string; }, chainId: number) => void; export declare const logRolled: (logger: typeof Logger, request: { tx: string; identifier: string; time: BigNumber; ancillaryData: string; }, chainId: number) => void; export declare const logGovernorTransfer: (logger: typeof Logger, transfer: { tx: string; to: string; value: string; }, chainId: number) => void; export declare const logMint: (logger: typeof Logger, mint: { tx: string; to: string; value: string; }, chainId: number) => void;