import { type FocusEvent } from "react"; interface IAlertThresholdInputProps { id: string; value: number | undefined; onChange: (value: string | number) => void; onBlur: (event: FocusEvent) => void; suffix?: string; errorMessage?: string; } export declare function AlertThresholdInput({ id, value, onChange, onBlur, suffix, errorMessage }: IAlertThresholdInputProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AlertThresholdInput.d.ts.map