interface IPackagistListResponse {
    packageNames: [string];
}
export declare function listAll(): Promise<IPackagistListResponse>;
export declare function listByOrg(vendor: string): Promise<IPackagistListResponse>;
export declare function listByType(type: string): Promise<IPackagistListResponse>;
export {};
