/** * 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. */ import { Verifier } from '../../functions/utils/verifiers'; declare type ISO8601String = string; export declare type RawShard = { Name: string; Start: ISO8601String; End: ISO8601String; Entries: number; Size: number; Cold: boolean; RemoteState?: { UUID: string; Entries: number; Size: number; }; }; export declare const rawShardDecoder: Verifier; export {};