import * as React from 'react'; import { CustomElements, NumericTextBoxProps, NumericTextBoxState } from './types'; export declare const useCustomElements: (props: NumericTextBoxProps, state: NumericTextBoxState) => CustomElements; export declare const useSyncedValue: (value: number | null | undefined, isFocused: boolean, format: string, thousandsSeparator: string, setInputValue: React.Dispatch>) => void;