UNPKG

tinacms

Version:

> The Fastest Way to Edit Next.js Content

11 lines (10 loc) 246 B
/// <reference types="react" /> export interface InputProps { error?: boolean; small?: boolean; placeholder?: string; step?: string | number; } export declare const Input: ({ ...props }: { [x: string]: any; }) => JSX.Element;