/// export type ThingsProps = { data: Json[]; allOptions?: Json; callbacks: { onDrillDown: (itemId: string) => void; onSelectionChange: (ids: string[]) => void; onCustomAction: (actionId: string, data?: Json) => void; }; dispatch: any; }; export declare function Things(props: ThingsProps): JSX.Element; export default Things;