export declare function createKeychain(appUUID: string, saveResultToFile?: boolean): Promise<{
    name: string;
    path: string;
    password: string;
}>;
export declare function deleteKeychain({ path, appUUID }: {
    path: string;
    appUUID?: string;
}): Promise<void>;
export declare function importIntoKeychain({ keychainPath, certPath, certPassword, }: {
    keychainPath: string;
    certPath: string;
    certPassword?: string;
}): Promise<void>;
export declare function cleanUpKeychains(): Promise<void>;