import { BaseModuleEntity } from '../base/baseModuleEntity';
import { SmsMainApiPathModel } from './smsMainApiPathModel';
export declare class SmsMainApiPathPermissionModel extends BaseModuleEntity<string> {
    linkApiPathId: string;
    linkCoreUserId?: number;
    linkCoreSiteId?: number;
    linkCoreUserGroupId?: number;
    linkCoreSiteCategoryId?: number;
    hasAccess: boolean;
    hasInherits: boolean;
    fromDate: Date;
    expireDate: Date;
    accessStatus: number;
    action: number;
    virtual_ApiPath: SmsMainApiPathModel;
    apiPath: SmsMainApiPathModel;
}
