import { ComKey, Item, PriKey } from "@fjell/types"; export declare const isPriItem: (item: Item) => item is Item & { key: PriKey; }; export declare const isComItem: (item: Item) => item is Item & { key: ComKey; };