UNPKG

styled-hook-form

Version:

React form library for styled-components based on grommet and react-hook-form

7 lines (6 loc) 334 B
import React from "react"; import { NumericBoxProps } from "./types"; export declare function parseNumericValue(value: string, fractionSep: string): Number; export declare function formatNumbericValue(value: number | undefined, fractionSep: string): string; declare const NumericBox: React.FC<NumericBoxProps>; export { NumericBox };