declare const logger: {
    /**
     * A custom logger that ensures messages are logged only once.
     * Reduces noise and duplicated messages when logs are in a hot codepath.
     */
    warnOnce: (msg: string) => void;
    logOnce: (msg: string) => void;
};

export { logger };
