import { Entity } from '@backstage/catalog-model'; /** * A dialog that lets users inspect the low level details of their entities. * * @public */ export declare function InspectEntityDialog(props: { open: boolean; entity: Entity; initialTab?: 'overview' | 'ancestry' | 'colocated' | 'json' | 'yaml'; onClose: () => void; onSelect?: (tab: string) => void; }): import("react/jsx-runtime").JSX.Element | null;