10 lines
193 B
TypeScript
Raw Normal View History

2022-08-11 09:06:07 -04:00
declare module "vtex.styleguide" {
import { ComponentType } from "react";
export const Input: ComponentType<InputProps>;
interface InputProps {
[key: string]: any
}
}