import type React from 'react'; export type FeedGroupPickerOption = { groupId: string; name: string; }; export declare function FeedGroupPicker(props: { groups: FeedGroupPickerOption[]; selectedId: string; newName: string; disabled?: boolean; onChange(selectedId: string, newName: string): void; }): React.JSX.Element; //# sourceMappingURL=feed-group-picker.d.ts.map