import type { HitLimitStore } from '@joint-ops/hitlimit-types'; export interface MySQLStoreOptions { /** mysql2/promise Pool instance */ pool: any; /** Table name prefix. Default: 'hitlimit' */ tablePrefix?: string; /** Cleanup interval in ms. Default: 60000 (1 minute) */ cleanupInterval?: number; /** Skip table creation (if you manage schema yourself). Default: false */ skipTableCreation?: boolean; } export declare function mysqlStore(options: MySQLStoreOptions): HitLimitStore; //# sourceMappingURL=mysql.d.ts.map