/** * @pwngh/economy-lab * * Copyright (c) Preston Neal * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. * * @license MIT */ /** * Reads typed fields from a posting's free-form `meta`. Kept free of SQL and store specifics so a * non-SQL store never imports engine code for a plain JSON lookup. */ export declare function metaString(meta: Record, key: string, fallback: string): string; export declare function metaNumber(meta: Record, key: string, fallback: number): number;