import { web3 } from '@coral-xyz/anchor';
export type StructWithPubkey<T> = T & {
publicKey: web3.PublicKey;
};
export type FilterOffsetAndConverterFunc = [number, (v: any) => string];
export type FilterOffsetAndConverterFuncMap = Record<string, FilterOffsetAndConverterFunc>;