import { AbstractController } from './AbstractController.ts';
export declare class AccessController extends AbstractController {
listCollaborators(fullname: string): Promise<Record<string, string>>;
listPackagesByUser(username: string): Promise<Record<string, string>>;
}