import type { BoxProps } from "@twilio-paste/box"; import * as React from "react"; import type { InputBoxTypes, Variants } from "./types"; export interface InputBoxProps { children: NonNullable; disabled?: boolean; element: BoxProps["element"]; hasError?: boolean; insertAfter?: React.ReactNode; insertBefore?: React.ReactNode; readOnly?: boolean; type?: InputBoxTypes; variant?: Variants; } declare const InputBox: React.ForwardRefExoticComponent>; export { InputBox }; //# sourceMappingURL=InputBox.d.ts.map