import { CASINO_GAME_TYPE } from "@betswirl/sdk-core"; type UseIsGamePausedProps = { game: CASINO_GAME_TYPE; query?: { enabled?: boolean; }; }; /** * Checks if a specific game type is currently paused on the blockchain * @param props.game - The casino game type to check * @returns Object containing: * - wagmiHook: The underlying wagmi useReadContract hook instance * - isPaused: Boolean indicating if the game is currently paused */ export declare function useIsGamePaused(props: UseIsGamePausedProps): { wagmiHook: import("wagmi").UseReadContractReturnType; isPaused: boolean; }; export {};