import { type PoolConnection } from '../index.js'; import type { Schema } from '../schema.js'; import { StatementKind } from '../statement.js'; export interface EventOptions { comment?: string; } /** * @see https://mariadb.com/kb/en/events/ */ export declare class Event { readonly schema: Schema; readonly name: string; readonly schedule: string; readonly statement: string; readonly options?: EventOptions | undefined; readonly qualifiedName: string; constructor(schema: Schema, name: string, schedule: string, statement: string, options?: EventOptions | undefined); create(connection?: PoolConnection): Promise; } //# sourceMappingURL=event.d.ts.map