UNPKG

360 BTypeScriptView Raw
1import React from "react";
2import { ILang } from "./interface";
3import { SelectProps } from "./components/PropsInterface";
4export * from "./interface";
5export * from "./components/PropsInterface";
6export interface NormalSelectProps extends SelectProps {
7 lang?: ILang;
8}
9declare const NormalSelect: React.FC<NormalSelectProps>;
10export default NormalSelect;