import { Component } from 'react'; import type { SimpleSelectOptionProps } from './props'; /** --- parent: SimpleSelect id: SimpleSelect.Option --- **/ declare class Option extends Component { static readonly componentId = "SimpleSelect.Option"; static allowedProps: readonly (keyof { id: string; value: string | number; isDisabled?: boolean; children?: string; renderBeforeLabel?: import("./props").RenderSimpleSelectOptionLabel; renderAfterLabel?: import("./props").RenderSimpleSelectOptionLabel; })[]; static defaultProps: { isDisabled: boolean; }; render(): null; } export default Option; export { Option }; //# sourceMappingURL=index.d.ts.map