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