import { Module } from './module.model';
export declare class Category {
    name: string;
    surname: string;
    id: string;
    modules: Module[];
    constructor(obj?: any);
    isBaseSkills(): boolean;
    isRigthtsAccess(): boolean;
    isParentingHelp(): boolean;
    isDigitalCultureSecurity(): boolean;
    isSocialAndProfessional(): boolean;
}
