import type { IJsHandlerOptions } from '../../types/index.js';
import type { SourceAnalysis } from '../babel.js';
export interface ModuleState {
    filename: string;
    source: string;
    analysis: SourceAnalysis;
}
export interface QueueItem {
    filename: string;
    depth: number;
}
export interface ModuleGraphEntry {
    filename: string;
    source: string;
    analysis: SourceAnalysis;
    handlerOptions: IJsHandlerOptions;
}
