import type * as core from '@prismamedia/graphql-platform'; import type { SetOptional } from 'type-fest'; import type { Table } from '../../schema.js'; import { SelectStatement } from './select.js'; /** * @see https://mariadb.com/kb/en/selecting-data/ */ export declare class FindStatement extends SelectStatement { readonly table: Table; readonly context: core.OperationContext; protected readonly statement: SetOptional; readonly selectionKey: string; constructor(table: Table, context: core.OperationContext, statement: SetOptional); toString(): string; } //# sourceMappingURL=find.d.ts.map