import React from "react"; import "./table-list.scss"; export declare type TableListProps = JSX.IntrinsicElements["dl"] & { /** Heading for list */ header: string; /** Props for the list's wrapper (figure) */ wrapperProps?: JSX.IntrinsicElements["figure"]; }; export declare const TableList: React.FC;