import * as React from 'react'; export interface JsonDetailListProps { /** Object, array, JSON string, or any scalar — rendered faithfully either way. */ data: unknown; /** Internal nesting level — leave at the default from call sites. */ depth?: number; } export declare function JsonDetailList({ data, depth }: JsonDetailListProps): React.JSX.Element; //# sourceMappingURL=json-detail-list.d.ts.map