import { web3 } from '@coral-xyz/anchor';
import { FraktMarket, OracleFloor, WhitelistEntry } from '../../types';
export declare const getAllProgramAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
    fraktMarkets: FraktMarket[];
    whitelistEntries: WhitelistEntry[];
    oracleFloors: OracleFloor[];
}>;
