import { BoxProps } from "@stenajs-webui/core"; import * as React from "react"; import { ReactNode } from "react"; export interface ValueTableItemProps { label: string; labelIndent?: boolean | number; value: string | number | boolean | ReactNode | undefined; alignValue?: BoxProps["justifyContent"]; } export declare const ValueTableItem: React.FC;