/// import * as T from "../form/type"; export interface RowProps { data: Partial; structureUnit: T.StructureViewUnit; } export interface ViewProps { data: Partial; structure: T.StructureViewUnit[]; } export declare type ViewValue = keyof A | ((d: A) => string | JSX.Element); export declare type ViewField = [string, ViewValue];