import { Connection, PublicKey } from '@solana/web3.js';
import { BulkAccountLoader } from '../accounts/bulkAccountLoader';
export type SerumMarketSubscriberConfig = {
    connection: Connection;
    programId: PublicKey;
    marketAddress: PublicKey;
    accountSubscription: {
        type: 'polling';
        accountLoader: BulkAccountLoader;
    } | {
        type: 'websocket';
    };
};
//# sourceMappingURL=types.d.ts.map