import { entityKind } from "../../entity.js"; import type { PgDialect } from "../dialect.js"; import type { PgPreparedQuery, PgQueryResultHKT, PgQueryResultKind, PgSession, PreparedQueryConfig } from "../session.js"; import type { PgMaterializedView } from "../view.js"; import { QueryPromise } from "../../query-promise.js"; import type { RunnableQuery } from "../../runnable-query.js"; import type { Query, SQLWrapper } from "../../sql/sql.js"; export interface PgRefreshMaterializedView extends QueryPromise>, RunnableQuery, 'pg'>, SQLWrapper { readonly _: { readonly dialect: 'pg'; readonly result: PgQueryResultKind; }; } export declare class PgRefreshMaterializedView extends QueryPromise> implements RunnableQuery, 'pg'>, SQLWrapper { private session; private dialect; static readonly [entityKind]: string; private config; constructor(view: PgMaterializedView, session: PgSession, dialect: PgDialect); concurrently(): this; withNoData(): this; toSQL(): Query; prepare(name: string): PgPreparedQuery; }>; private authToken?; execute: ReturnType['execute']; }