import { type SelectableValue, type TypedVariableModel } from '@grafana/data'; import { type QueryWithDefaults } from '../../defaults'; import { type DB, type SQLExpression, type SQLQuery } from '../../types'; interface WhereRowProps { query: QueryWithDefaults; fields: SelectableValue[]; onQueryChange: (query: SQLQuery) => void; db: DB; } export declare function SQLWhereRow({ query, fields, onQueryChange, db }: WhereRowProps): import("react/jsx-runtime").JSX.Element; export declare function removeQuotesForMultiVariables(val: SQLExpression, templateVars: TypedVariableModel[]): void; export {};