challenge-vtex-io-Patrick-R.../react/typings/vtex.styleguide.d.ts
2023-02-08 23:39:36 -03:00

10 lines
193 B
TypeScript

declare module "vtex.styleguide" {
import { ComponentType } from "react";
export const Input: ComponentType<InputProps>;
interface InputProps {
[key: string]: any
}
}