import { EntityCallbacks, EntityCollection, EntitySchema, EntitySchemaResolver, PermissionsBuilder } from "../../models"; export interface EntityViewProps { path: string; schema: EntitySchema | EntitySchemaResolver; entityId?: string; copy?: boolean; selectedSubpath?: string; permissions?: PermissionsBuilder; callbacks?: EntityCallbacks; subcollections?: EntityCollection[]; width?: number | string; onModifiedValues: (modified: boolean) => void; } export declare function EntityView({ path, entityId, callbacks, selectedSubpath, copy, permissions, schema: schemaOrResolver, subcollections, onModifiedValues, width }: EntityViewProps): import("@emotion/react/jsx-runtime").JSX.Element;