forked from M3-Academy/m3-academy-template-vtexio
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
|
declare module "vtex.styleguide" {
|
||
|
import { ComponentType } from "react";
|
||
|
|
||
|
export const Input: ComponentType<InputProps>;
|
||
|
|
||
|
interface InputProps {
|
||
|
[key: string]: any
|
||
|
}
|
||
|
}
|