export interface AgeKey { private: string; public: string; } export interface AgeKeyReference { project: string; public: string; path: string; } export declare function ageAvailable(): boolean; export declare function ageGenerate(): AgeKey; export declare function agePublicFromPrivate(privateKey: string): string; export declare function keyPath(project: string): string; export declare function keyExists(project: string): boolean; export declare function keySave(project: string, key: AgeKey): void; export declare function keyLoad(project: string): AgeKey | null; export declare function findKeyByPublicKey(publicKey: string): AgeKeyReference | null; export declare function findKeysByPublicKey(publicKey: string): AgeKeyReference[]; export declare function keysList(): { project: string; public: string; }[]; //# sourceMappingURL=age.d.ts.map