import { VALID_NETWORKS } from '../constants';
export declare type ValidNetwork = keyof typeof VALID_NETWORKS;
export declare type Keychain<T = string> = {
    [key in ValidNetwork]?: T;
};
export declare type KeychainList = Record<string, Keychain>;
export declare type ValidKey = string | number | symbol;
export declare type NetworkType = {
    chainId: string;
    networkId: number;
    name: string;
    symbol: string;
    tokenDecimals: number;
};
