import { Awaitable } from '@yolodev/rollup-config-core'; import { Project } from './types'; declare type DelegatedToProjectOptions = { packageDir: string | ((dirname: string) => Awaitable); configFile: string | ((proj: Project) => Awaitable); }; export declare const delegateToProject: (opts?: Partial) => import("@yolodev/rollup-config-core/src/types").RollupConfigMiddleware; export {};