import React from 'react'; import cx from 'classnames'; export interface Props { children: React.ReactNode; className?: Parameters[0]; selected?: boolean; disabled?: boolean; tabIndex?: number; onClick: () => void; multi?: boolean; small?: boolean; inline?: boolean; } declare const SelectGroupItem: React.FC; export default SelectGroupItem; //# sourceMappingURL=SelectGroupItem.d.ts.map