import { type FC, type ReactEventHandler, type ReactNode } from 'react'; type SelectOptionComponentProps = { onClick?: ReactEventHandler; className?: string; children?: ReactNode; }; declare const SelectOptionComponent: FC; export default SelectOptionComponent; //# sourceMappingURL=SelectOptionComponent.d.ts.map