challenge-vtex-io-eleonora-otz/react/typings/vtex.styleguide.d.ts

10 lines
193 B
TypeScript
Raw Normal View History

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