import { ChainSpec } from "../types"; import { Node } from "../sharedTypes"; export type GenesisNodeKey = [string, string]; declare function specHaveSessionsKeys(chainSpec: ChainSpec): any; declare function getAuthorityKeys(chainSpec: ChainSpec): any; declare function addAuthority(specPath: string, node: Node, key: GenesisNodeKey): Promise; declare function clearAuthorities(specPath: string): Promise; declare function generateKeyForNode(nodeName?: string): Promise; export declare function getNodeKey(node: Node): GenesisNodeKey; declare function addParaCustom(specPath: string, node: Node): Promise; declare function getProcessStartTimeKey(): string; declare const _default: { specHaveSessionsKeys: typeof specHaveSessionsKeys; addAuthority: typeof addAuthority; clearAuthorities: typeof clearAuthorities; generateKeyForNode: typeof generateKeyForNode; addParaCustom: typeof addParaCustom; getAuthorityKeys: typeof getAuthorityKeys; getNodeKey: typeof getNodeKey; getProcessStartTimeKey: typeof getProcessStartTimeKey; }; export default _default;