type WHTableProps = {
    columnsTitles: {
        id: string;
        title: string;
    }[];
    label: string;
    items: Record<string, string>[];
};
export default function WHTable({ columnsTitles, label, items }: WHTableProps): import("react/jsx-runtime").JSX.Element;
export {};
