import { AbstractModuleInstance } from '@xyo-network/module-abstract';
import type { ModuleConfig, ModuleParams } from '@xyo-network/module-model';
import type { Query, Schema } from '@xyo-network/payload-model';
export type TestModuleConfigSchema = 'network.xyo.test.module';
export declare const TestModuleConfigSchema: TestModuleConfigSchema;
export declare class TestModule extends AbstractModuleInstance<ModuleParams<ModuleConfig<{
    schema: TestModuleConfigSchema;
}>>> {
    static readonly configSchemas: Schema[];
    static readonly defaultConfigSchema: Schema;
    get _queryAccountPaths(): Record<Query['schema'], string>;
}
export declare const init: () => Promise<void>;
//# sourceMappingURL=TestModule.d.ts.map