import { z } from 'zod'; import { HookConfigSchema, IsmConfigSchema } from '@hyperlane-xyz/sdk'; declare const MessageBacklogSchema: z.ZodArray>; type DerivedHookConfig = z.infer, typeof HookConfigSchema>>; type DerivedIsmConfig = z.infer, typeof IsmConfigSchema>>; type MessageBacklog = z.infer; export type RelayerCache = { hook: Record>; ism: Record>; backlog: MessageBacklog; }; export declare const RelayerCacheSchema: z.ZodType; export {}; //# sourceMappingURL=cache.d.ts.map