export type DropdownMenuSingleSelectionItemProps = { label: React.ReactNode; selected?: boolean; badge?: { label: string; avatar?: React.ReactElement; }; thumbnail?: string; icon?: React.ComponentType>; multiline?: boolean; } & Omit, "children"> & React.RefAttributes; export declare function DropdownMenuSingleSelectionItem({ label, selected, badge, thumbnail, icon: Icon, multiline, ref, ...props }: DropdownMenuSingleSelectionItemProps): import("react").JSX.Element; export declare namespace DropdownMenuSingleSelectionItem { var displayName: string; } //# sourceMappingURL=DropdownMenuSingleSelectionItem.d.ts.map