import React from "react"; import { CSSObject } from "create-emotion"; import { TColor, IComponent, TAnimation } from "../types"; interface TextfieldProps extends IComponent { label: string; id: string; name: string; placeholder: string; defaultValue: string; color: TColor; isFluid: boolean; isDisabled: boolean; icon: React.ReactChild; min: number; max: number; step: number; animation: TAnimation; error: string; type: "text" | "password" | "number"; mask: string; onChange: (value: string) => void; } declare const Textfield: React.StatelessComponent export default Textfield