import { IHttpClient } from '../http';
import { PagedResource, IDownloadFileProvider } from './resource';
import { Profile } from '../models';
export declare class ProfilesResource extends PagedResource<Profile> implements IDownloadFileProvider {
    constructor(httpClient: IHttpClient);
    getDownloadRequestPath(id: string): string;
}
