import { View } from '..'; import * as MySQL from 'cqes-mysql'; export interface props extends View.Request.props { MySQL: MySQL.props; } export declare class UpdateHandlers extends View.Update.Handlers { protected mysql: MySQL.MySQL; constructor(props: props); start(): Promise; stop(): Promise; } export declare class RequestHandlers extends View.Request.Handlers { protected mysql: MySQL.MySQL; constructor(props: props); start(): Promise; stop(): Promise; } export declare class QueryHandlers extends View.Query.Handlers { protected mysql: MySQL.MySQL; constructor(props: props); start(): Promise; stop(): Promise; }