import { type Brand } from '@navinc/utils'; import { ChangeEventHandler } from 'react'; import { TargetValue } from '../shared.js'; import { BaseStringInputProps } from '../base-string-input/base-string-input.js'; export type USDCents = Brand; type UpdatedHTMLInputElement = TargetValue; export declare const toUSDCents: (valueAsCents: number) => USDCents; export type BaseUSDInputProps = Omit & { withCents?: boolean; value?: USDCents; onChange?: ChangeEventHandler; }; export declare const BaseUSDInput: import("react").ForwardRefExoticComponent & { withCents?: boolean; value?: USDCents; onChange?: ChangeEventHandler; } & import("react").RefAttributes>; export {};