@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
11 lines (10 loc) • 627 B
TypeScript
import { type SlotComponent } from "@1771technologies/lytenyte-core/yinternal";
export interface FilterCombinatorSlotProps {
readonly value: "AND" | "OR" | null;
readonly onChange: (v: "AND" | "OR" | null) => void;
readonly shouldShow: boolean;
}
export interface FilterCombinatorProps {
readonly as?: SlotComponent<FilterCombinatorSlotProps>;
}
export declare const FilterCombinator: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & FilterCombinatorProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;