import { ReactElement } from 'react'; import { FormatOptions } from '../model'; export interface UnitSelectorProps { value?: FormatOptions; onChange: (format: FormatOptions | undefined) => void; disabled?: boolean; } export declare function UnitSelector({ value, onChange, disabled, ...otherProps }: UnitSelectorProps): ReactElement; //# sourceMappingURL=UnitSelector.d.ts.map