import { IMatch } from './imatch.mjs'; export interface IExpiry { match: IMatch; expiry: number; } export declare function isIExpiry(test: unknown): test is IExpiry; export declare function toIExpiry(data: unknown): IExpiry;