export declare const CHAIN_IDS: { [secretType: string]: { production: string; sandbox: string; staging: string; qa: string; }; }; export declare const CHAIN_CONFIGS: { [chainId: number]: { env: string; secretType: string; }; }; export declare const REQUEST_TYPES: { [secretType: string]: { transaction: string; signature: string; }; }; export type BlockData = string | string[]; export type Block = Record;