export interface ExternalRefsPageProps { entityType?: string; entityId?: string; onScopeChange?: (scope: { entityType: string; entityId: string; }) => void; className?: string; } export declare function ExternalRefsPage({ entityType, entityId, onScopeChange, className, }?: ExternalRefsPageProps): import("react").JSX.Element; export interface ExternalRefsTabProps { entityType: string; entityId: string; } export declare function ExternalRefsTab({ entityType, entityId }: ExternalRefsTabProps): import("react").JSX.Element;