import { PerpMarketAccount, PerpOperation, SpotMarketAccount, SpotOperation, StateAccount } from '../types'; export declare function exchangePaused(state: StateAccount): boolean; export declare function fillPaused(state: StateAccount, market: PerpMarketAccount | SpotMarketAccount): boolean; export declare function ammPaused(state: StateAccount, market: PerpMarketAccount | SpotMarketAccount): boolean; export declare function isOperationPaused(pausedOperations: number, operation: PerpOperation | SpotOperation): boolean;