import { type XiorPlugin } from 'xior';
export interface XRayPluginOptions {
    /**
     * Custom name for the X-Ray subsegment (appears as service on X-Ray map)
     *
     * @default `config.baseURL` if set, otherwise `Remote Server`.
     */
    serviceName?: string;
}
export declare function xrayPlugin(options?: XRayPluginOptions): XiorPlugin;
export default xrayPlugin;
