import { IHttpClient } from '../http';
import { PagedResource } from './resource';
import { EntityTypeDictionaryElement } from '../models';
import { CancellationToken } from '../cancellation-token';
export declare class EntityTypeDictionaryElementsResource extends PagedResource<EntityTypeDictionaryElement> {
    constructor(httpClient: IHttpClient, dictionaryId: string);
    import(body: FormData, params?: any, token?: CancellationToken): Promise<void>;
}
