import { BigIntAsString, SuiAddress } from "../../../general/types/generalTypes";
import { EventOnChain } from "../../../general/types/castingTypes";
import { CoinType } from "../../coin/coinTypes";
export type FaucetMintCoinEventOnChain = EventOnChain<{
    amount: BigIntAsString;
    type: CoinType;
    user: SuiAddress;
}>;
export type FaucetAddCoinEventOnChain = EventOnChain<{
    symbol: string;
    type: CoinType;
}>;
//# sourceMappingURL=faucetApiCastingTypes.d.ts.map