import type { InputAdornmentProps } from '@mui/material'; import React from 'react'; /** Props for {@link FixedPointInputAdornment}. */ export interface FixedPointInputAdornmentProps extends InputAdornmentProps { fixedPoint?: number; minFixedPoint?: number; onFixedPointChange?: (value: number) => void; } /** Input adornment that opens a popover to edit the fixed-point scale. */ export declare const FixedPointInputAdornment: React.FC; //# sourceMappingURL=InputAdornment.d.ts.map