import type { SelectProps as SelectCoreProps } from "@radix-ui/react-select";
import { BaseOption } from "@refinedev/core";
import React from "react";
export declare const Select: React.ForwardRefExoticComponent<SelectCoreProps & {
    placeholder?: string | undefined;
    emptyMessage?: string | undefined;
    onChange?: ((value: string) => void) | undefined;
    options?: BaseOption[] | undefined;
} & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=select.d.ts.map