export declare enum DataShapeType { STRING = 0, NUMBER = 1, BOOLEAN = 2, ARRAY = 3, OBJECT = 4, NULL = 5, UNSUPPORTED = 6 } export type DataShaperOptions = { maxDepth: number; maxArrayCheckIdx: number; }; export type DataShape = DataShapeType | DataShape[] | { [key: string]: DataShape; }; export declare const dataShaper: (data: any, maxDepth?: number, maxArrayCheckIdx?: number) => DataShape; //# sourceMappingURL=index.d.ts.map