/** * Wrapper for get() operation * * Provides automatic validation for get() operation parameters. */ import { Coordinate, GetMethod, Item } from "@fjell/types"; import type { WrapperOptions } from "./types"; /** * Creates a wrapped get() method with automatic parameter validation. * * @param coordinate - The coordinate defining the item hierarchy * @param implementation - The core logic for the operation * @param options - Optional configuration * @returns A fully validated get() method * * @example * ```typescript * const get = createGetWrapper( * coordinate, * async (key) => { * return await database.findByKey(key); * } * ); * ``` */ export declare function createGetWrapper, S extends string, L1 extends string = never, L2 extends string = never, L3 extends string = never, L4 extends string = never, L5 extends string = never>(coordinate: Coordinate, implementation: GetMethod, options?: WrapperOptions): GetMethod;