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;
