import './MetadataEditor.scss'; type TopmostArrayTableProps = { model: any[]; itemSchema: any; name: string; selected: number; onSelected: (index: number) => void; onChangeModel: (model: any[]) => void; }; /** * The selectable table view for the topmost array metadata. * @param props * @constructor */ export declare function TopmostArrayTable(props: TopmostArrayTableProps): import("react/jsx-runtime").JSX.Element; export {};