import React from "react"; export type InfoTableProps = Readonly<{ children: React.ReactNode; }>; export declare function InfoTable({ children }: InfoTableProps): React.JSX.Element; export declare namespace InfoTable { export { InfoTableRow as Row }; } export type InfoTableRowProps = Readonly<{ label: React.ReactNode; value: React.ReactNode; divider?: boolean; }>; export declare const InfoTableRow: ({ label, value, divider, ...rest }: InfoTableRowProps) => React.JSX.Element; //# sourceMappingURL=InfoTable.d.ts.map