import { GroupEntity } from '@backstage/catalog-model'; /** * Props for {@link GroupListPicker}. * * @public */ export type GroupListPickerProps = { defaultValue?: string; placeholder?: string; groupTypes?: Array; onChange: (value: GroupEntity | undefined) => void; }; /** @public */ export declare const GroupListPicker: (props: GroupListPickerProps) => import("react/jsx-runtime").JSX.Element;