import type { KeyEntryObject } from '.'; import type { KeyEntryListHandle } from '../crypto'; import { KeyEntry } from './KeyEntry'; export declare class KeyEntryList { private _handle; private _len; constructor({ handle }: { handle: KeyEntryListHandle; }); get handle(): KeyEntryListHandle; get length(): number; getEntryByIndex(index: number): KeyEntry; forEach(cb: (entry: KeyEntry, index?: number) => unknown): void; toArray(): KeyEntryObject[]; }