import React from "react"; declare const sizes: readonly ["xs", "sm", "md"]; export interface InputProps { autoFocus?: boolean; disabled?: boolean; id?: string; inline?: boolean; maxLength?: number; onChange: (value: string) => unknown; placeholder?: string; required?: boolean; size?: (typeof sizes)[number]; defaultValue?: string; naked?: boolean; value?: string; } export declare const Input: ({ autoFocus, disabled, id, inline, maxLength, onChange, placeholder, required, size, defaultValue, naked, value, }: InputProps) => React.JSX.Element; export {}; //# sourceMappingURL=Input.d.ts.map