import * as React from 'react';
import type { BaseUIComponentProps } from "../../utils/types.js";
import { type TransitionStatus } from "../../utils/useTransitionStatus.js";
/**
 * Indicates whether the select item is selected.
 * Renders a `<span>` element.
 *
 * Documentation: [Base UI Select](https://base-ui.com/react/components/select)
 */
export declare const SelectItemIndicator: React.ForwardRefExoticComponent<SelectItemIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
export interface SelectItemIndicatorState {
  selected: boolean;
  transitionStatus: TransitionStatus;
}
export interface SelectItemIndicatorProps extends BaseUIComponentProps<'span', SelectItemIndicator.State> {
  children?: React.ReactNode;
  /** Whether to keep the HTML element in the DOM when the item is not selected. */
  keepMounted?: boolean;
}
export declare namespace SelectItemIndicator {
  type State = SelectItemIndicatorState;
  type Props = SelectItemIndicatorProps;
}