/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { QueryBuilderProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime156 from "react/jsx-runtime"; //#region src/components/query-builder/index.d.ts /** * QueryBuilder - A visual interface for building complex database queries * * Provides an intuitive drag-and-drop interface for constructing database queries * with support for multiple conditions, operators, and logical grouping. Enables * users to build complex filters without writing SQL or code. * * @param props - {@link QueryBuilderProps} * @param props.controlClassnames - Custom CSS class names for control elements. * @param props.controlElements - Custom component overrides for controls. * @param props.orientation - Layout orientation ('horizontal' or 'vertical'). * @param props.showRuleLines - Whether to show connecting lines between rules. * @returns The rendered QueryBuilder component. * * @example * ```tsx * // Basic query builder * * ``` */ declare function QueryBuilder({ controlClassnames, controlElements, orientation, showRuleLines, ...rest }: QueryBuilderProps): react_jsx_runtime156.JSX.Element; //#endregion export { QueryBuilder }; //# sourceMappingURL=index.d.ts.map