import { IExportRule } from "../../api"; export declare class ReadableExportRule { static readonly FIELD_IDENTIFIER = "Identifier"; static readonly FIELDS_DEFAULT: string[]; static readonly FIELDS_ALL: string[]; static listFromApi(apiObjects: IExportRule[]): ReadableExportRule[]; readonly Identifier: number; readonly Name: string; readonly Description: string; readonly Owner: string; readonly Public: boolean; constructor(apiObject: IExportRule); }