import type { SelectParams } from "prostgles-types"; import type { ParsedTableRule } from "../../PublishParser/PublishParser"; import type { Filter, LocalParams } from "../DboBuilder"; import type { NewQuery } from "../QueryBuilder/QueryBuilder"; import type { TableHandler } from "../TableHandler/TableHandler"; import type { ViewHandler } from "./ViewHandler"; export declare const find: (this: ViewHandler, filter?: Filter, selectParams?: SelectParams, _?: undefined, tableRules?: ParsedTableRule, localParams?: LocalParams) => Promise; type RunQueryReturnTypeArgs = { queryWithRLS: string; queryWithoutRLS: string; returnType: SelectParams["returnType"]; handler: ViewHandler | TableHandler; localParams: LocalParams | undefined; newQuery: NewQuery | undefined; }; export declare const runQueryReturnType: ({ newQuery, handler, localParams, queryWithRLS, queryWithoutRLS, returnType, }: RunQueryReturnTypeArgs) => Promise; export {}; //# sourceMappingURL=find.d.ts.map