/// <reference types="node" />
import { ApplicationConfig } from '../../types';
export declare const defaultConfig: ApplicationConfig;
export declare const getKeysFromDefaultConfig: (address: Buffer) => {
    address: string;
    keyPath: string;
    publicKey: string;
    privateKey: string;
    plain: {
        generatorKeyPath: string;
        generatorKey: string;
        generatorPrivateKey: string;
        blsKeyPath: string;
        blsKey: string;
        blsProofOfPossession: string;
        blsPrivateKey: string;
    };
    encrypted: {};
};
export type Keys = ReturnType<typeof getKeysFromDefaultConfig>;
export declare const getGeneratorPrivateKeyFromDefaultConfig: (address: Buffer) => Buffer;
