import { type ModuleFormat } from '../../../utils/module-format/module-format';
export type { ModuleFormat };
export interface ModuleFormatDetectionOptions {
    projectRoot: string;
    workspaceRoot: string;
    tsConfig?: string;
    main: string;
    buildOptions?: any;
}
export declare function detectModuleFormat(options: ModuleFormatDetectionOptions): ModuleFormat;
