import { CategoryWithId } from '../interfaces/category';
import { AbstractCombineAdapter } from './abstract-combine-adapter';
export declare class CombineNameAndIndexAdapter extends AbstractCombineAdapter<CategoryWithId> {
    findIndex(data: CategoryWithId): number;
    fromIndex(index: number): CategoryWithId;
    convert(): CategoryWithId[][];
    transform(data: CategoryWithId[][], reversed?: boolean): string[];
}
