10 lines
193 B
TypeScript
Raw Normal View History

2023-01-30 16:15:00 -03:00
declare module "vtex.styleguide" {
import { ComponentType } from "react";
export const Input: ComponentType<InputProps>;
interface InputProps {
[key: string]: any
}
}