import type Serverless from "serverless";
/** Plugin implementation */
export default class ServerlessMonoRepo {
    private serverless;
    hooks: Record<string, () => void>;
    constructor(serverless: Serverless);
    linkPackage(name: string, fromPath: string, toPath: string, created: Set<string>, resolved: string[]): Promise<void>;
    clean(): Promise<void>;
    initialise(): Promise<void>;
}
