import { Modules } from 'klayr-framework';
import { ConfigRegistryStoreData } from '../types';
export declare class ConfigRegistryStore extends Modules.BaseStore<ConfigRegistryStoreData> {
    getOrDefault(context: Modules.ImmutableStoreGetter): Promise<ConfigRegistryStoreData>;
    register(context: Modules.StoreGetter, module: string, index: number): Promise<void>;
    schema: import("@swaptoshi/utils/dist/types").TypedSchema<ConfigRegistryStoreData>;
}
