/** * @license * Copyright (c) Peculiar Ventures, LLC. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { FunctionalComponent } from '../../stencil-public-runtime'; export declare const TableRowTable: FunctionalComponent; interface IRowTitleProps { value: string | string[]; } export declare const RowTitle: FunctionalComponent; interface IRowValueProps { name: string | string[]; value: string | number | string[]; monospace?: boolean; collapse?: boolean; href?: string; extraValue?: Element[]; } export declare const RowValue: FunctionalComponent; export {};