@etsoo/materialui
Version:
TypeScript Material-UI Implementation
18 lines (17 loc) • 443 B
TypeScript
import { ListType1 } from "@etsoo/shared";
import { SelectExProps } from "./SelectEx";
/**
* SelectBool props
*/
export type SelectBoolProps = Omit<SelectExProps<ListType1>, "options" | "loadData" | "value"> & {
/**
* Value
*/
value?: boolean;
};
/**
* SelectBool (yes/no)
* @param props Props
* @returns Component
*/
export declare function SelectBool(props: SelectBoolProps): import("react/jsx-runtime").JSX.Element;