import type { Option } from "./+types";
import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface SortValueSelectProps {
    readonly as?: SlotComponent<{
        options: Option[];
        onSelect: (v: Option | null) => void;
        value: Option | null;
        disabled: boolean;
    }>;
}
export declare const SortValueSelect: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & SortValueSelectProps, "ref"> & import("react").RefAttributes<HTMLSelectElement>>;
