forked from M3-Academy/challenge-vtex-io
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
|
|
}
|
|
}
|