interface WithId { id: string | number; } export declare const hasId: (obj: unknown) => obj is WithId; export {};