import { toHex } from '@syllepsis/plugin-basic'; declare class StashStore { data: string[]; maxSize: number; key: string; constructor(key: string, max: number); add(data: string, transformToHex?: boolean): void; } export { StashStore, toHex };