import { default as React } from 'react'; import { FormSelectChoice, InputSelectComponentProps } from '../../../lib/types/types'; interface StatusComponentProps extends InputSelectComponentProps { segmentId: string; errorId?: string; explanation?: string | JSX.Element; } export declare const Status: ({ value, isErrored, errorId, options, onChange, intl, placeholder, onKeyDown, segmentId, disabled, explanation, }: StatusComponentProps) => import("react/jsx-runtime").JSX.Element; export declare const StatusComponent: React.ComponentClass, "value" | "isErrored" | "onChange" | "disabled" | "onKeyDown" | "label" | "placeholder" | "isRequired" | "explanation" | "errorId" | "options" | "suppressPlaceholder" | "segmentId">, any> & { WrappedComponent: React.ComponentType & ReactIntl.InjectedIntlProps>; }; export {};