import { IconComponent } from '@backstage/core-plugin-api'; export type ButtonGroup = { name: string; items: { id: 'owned' | 'starred' | 'all'; label: string; icon?: IconComponent; }[]; }; export declare const OwnerListPicker: (props: { filter: string; onSelectOwner: (id: "owned" | "all") => void; }) => import("react/jsx-runtime").JSX.Element;