import React, { FC } from "react"; import { SelectProps as MuiSelectProps } from "@material-ui/core"; export interface SelectProps extends MuiSelectProps { items: { label: string | React.ReactNode; value: string | number; }[]; size?: "small" | "large"; label?: string; } export declare const Select: FC; //# sourceMappingURL=index.d.ts.map