export type Struct = { [k: string]: number | string | Struct | Array; }; export declare function isStruct(o: unknown): o is Struct;