///
import type { BoxProps } from "@twilio-paste/box";
export type InputBoxTypes = "text" | "email" | "hidden" | "number" | "password" | "search" | "tel" | "date" | "time" | "url";
export type Variants = "default" | "inverse";
export interface FauxInputProps {
children: NonNullable;
disabled?: boolean;
element: BoxProps["element"];
hasError?: boolean;
readOnly?: boolean;
type?: InputBoxTypes;
variant?: Variants;
}
//# sourceMappingURL=types.d.ts.map