import { Profile } from '../profile';
import { ExtensionBase } from './base';
export declare abstract class ProfileReader<C = any, Options = Record<string, any>> extends ExtensionBase<C> {
abstract read(options: Options): Promise<Profile<Record<string, any>>[]>;
}