import React, { FC } from "react"; export interface SpecsListProps extends React.HTMLAttributes, React.ComponentPropsWithoutRef<"div"> { specs: { [key: string]: { [key: string]: string | number | boolean; }; }; listOrder?: string[]; className?: string; title?: string; } declare const SpecsList: FC; export default SpecsList; //# sourceMappingURL=SpecsList.d.ts.map