import { SectionModel } from './section.model'; export declare class PermissionModel { id: number; label: string; code: string; priority: number; sectionId: number; section: SectionModel; description: string; constructor(id?: number, label?: string, code?: string, priority?: number, sectionId?: number, section?: SectionModel, description?: string); fromJSON(json: any): this; } //# sourceMappingURL=permission.model.d.ts.map