import { AbstractModel } from './abstract-model'; export declare class ContentGroupLeaf extends AbstractModel { contentGroupId: number; contentLeafChainId: string; sortOrder: number; page: number; static tableName: string; static idColumn: string[]; static jsonSchema: { type: string; required: string[]; properties: { contentGroupId: { type: string; }; contentLeafChainId: { type: string; minLength: number; maxLength: number; }; sortOrder: { type: string; minimum: number; }; }; }; }