// Type definitions for phpUnserialize type phpscalar = string | number | boolean | null; type phparray = Array | Record; export type unserialized = phpscalar | phparray; export function phpUnserialize(phpstr: string): unserialized;