import type { Repl } from '@adonisjs/core/repl'; import type { ApplicationService } from '@adonisjs/core/types'; /** * Define repl bindings. The method must be invoked when application environment * is set to repl. * * @param app - Application service instance * @param repl - REPL instance * * @example * ```ts * // In your REPL configuration * export default defineReplBindings(app, repl) * * // Then in REPL: * await loadRedis() * redis.set('key', 'value') * ``` */ export declare function defineReplBindings(app: ApplicationService, repl: Repl): void;