UNPKG

@brizy/ui

Version:
10 lines (9 loc) 375 B
import { Ref } from "react"; import { AutoCorrectingInput, Props as CommonProps } from "../index"; import { FCC } from "../../types"; export interface Props extends CommonProps { stepperSize: "small" | "medium" | "large" | "auto"; handleDecrementCb: VoidFunction; inputRef: Ref<AutoCorrectingInput>; } export declare const AutoCorrectingInputStepper: FCC<Props>;