import { PipeTransform } from '@angular/core';
import { Set } from 'immutable';
import { JSONSchema } from '../interfaces';
export declare class AddAlwaysShowFieldsPipe implements PipeTransform {
    transform(fields: Set<string>, schema: JSONSchema): Set<string>;
}
