import { PipeTransform } from '@angular/core';
/**
 * Pipe allowing to concat items
 * items : items to concat
 * separator : a separator
 * property : sub item property (if needed)
 */
export declare class AsiConcatPipe implements PipeTransform {
    transform(items: Array<any>, separator: string, property?: string): string | any[];
}
