import type { Logger } from 'fixparser';
export type PluginOptions = {
    port?: number;
    logger?: Logger;
    onReady?: () => void;
};
