import { Connection } from '@salesforce/core';
export default class PermissionSetFetcher {
    private username;
    private conn;
    constructor(username: string, conn: Connection);
    fetchAllPermsetAssignment(): Promise<any[]>;
}
