import { Key } from './key'; export declare class KeySet { keys: Key[]; static fromBytes(data: Uint8Array): KeySet; constructor(keys?: Key[]); getByKid(kid: Uint8Array): Key[]; toBytes(): Uint8Array; }