/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ export declare type RawID = string; export declare type ID = string; export declare const isID: (value: any) => value is string; export declare type NumericID = string; export declare type RawNumericID = number; export declare const toNumericID: (raw: RawNumericID) => NumericID; export declare const toRawNumericID: (id: NumericID) => RawNumericID; export declare const isNumericID: (value: any) => value is string; export declare const numericIdDecoder: import("../functions/utils/verifiers").Verifier; export declare type UUID = string; export declare type RawUUID = string; export declare const isUUID: (value: any) => value is string;