/** * Interface & Utility */ export declare type MintData = { mint_authority_option: number; mint_authority: string; supply: bigint; decimals: number; is_initialized: boolean; freeze_authority_option: number; freeze_authority: string; }; export declare type MintsState = Record; /** * Actions */ export declare const getMint: import("@reduxjs/toolkit").AsyncThunk; export declare const upsetMint: import("@reduxjs/toolkit").AsyncThunk; export declare const deleteMint: import("@reduxjs/toolkit").AsyncThunk<{ address: string; }, { address: string; }, {}>; declare const _default: import("redux").Reducer; export default _default;