import type { NextRequest } from 'next/server';
import type { NextActuatorConfig } from './types/next-actuator-config';
import type { Optional } from './types/optional';
export type { NextActuatorConfig };
export type { Component } from './types/component';
export type { Metric } from './types/metric';
export declare const createNextActuator: (actuatorConfig?: Optional<NextActuatorConfig>) => {
    GET: (req: NextRequest) => Promise<Response>;
};
