import { type ReactElement } from "react"; import { IDbViewerApi } from "../Domain/Api/DbViewerApi"; interface ObjectTypesProps { dbViewerApi: IDbViewerApi; useErrorHandlingContainer: boolean; identifierKeywords: string[]; withGoBackUrl?: boolean; } export declare const ObjectTypesContainer: ({ dbViewerApi, useErrorHandlingContainer, identifierKeywords, withGoBackUrl, }: ObjectTypesProps) => ReactElement; export {};