import { MouseEvent, ReactNode } from 'react'; export interface StyledSelectItemProps { value?: unknown; children?: ReactNode; selected?: boolean; disabled?: boolean; className?: string; onClick?: (event: MouseEvent) => void; } /** * Option row for `StyledSelect` (replaces MUI `MenuItem` in the select context). `role="option"` * with a leading check column for the selected state. Public props preserved (DEC-003). TASK-402. */ export declare const StyledSelectItem: ({ children, selected, disabled, className, onClick, }: StyledSelectItemProps) => JSX.Element;