import { ComKey, Coordinate, Item, LocKeyArray, PriKey } from '@fjell/types'; /** * Validates item structure matches coordinate */ export declare function validateItem, S extends string, L1 extends string = never, L2 extends string = never, L3 extends string = never, L4 extends string = never, L5 extends string = never>(item: Partial>, coordinate: Coordinate): void; /** * Validates key matches coordinate */ export declare function validateKey(key: PriKey | ComKey, coordinate: Coordinate): void; /** * Validates locations match coordinate */ export declare function validateLocations(locations: LocKeyArray | undefined, coordinate: Coordinate): void;