UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

13 lines (12 loc) 377 B
import { ListType1 } from "@etsoo/shared"; import { SelectExProps } from "./SelectEx"; /** * SelectBool props */ export type SelectBoolProps = Omit<SelectExProps<ListType1>, "options" | "loadData">; /** * SelectBool (yes/no) * @param props Props * @returns Component */ export declare function SelectBool(props: SelectBoolProps): import("react/jsx-runtime").JSX.Element;