import { Server as SocketIoServer } from "socket.io"; import type { AuthorizeOptions } from "../../index.js"; interface FastifyIo { instance: SocketIoServer; } declare module "fastify" { interface FastifyInstance { io: FastifyIo; } } export interface BasicProfile { email: string; id: number; } export interface Profile extends BasicProfile { checkField: boolean; } export declare const PORT = 9000; export declare const API_URL = "http://localhost:9000"; export declare const basicProfile: BasicProfile; export declare const fixtureStart: (options?: AuthorizeOptions) => Promise; export declare const fixtureStop: () => Promise; export declare const getSocket: () => SocketIoServer | undefined; export {};