import mongoose, { Document } from 'mongoose';
export interface ICustomerGroupDocument extends Document {
    _id: any;
    name: string;
    code: string;
    description?: string;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
}
export declare const CustomerGroup: mongoose.Model<ICustomerGroupDocument, {}, {}, {}, mongoose.Document<unknown, {}, ICustomerGroupDocument, {}, {}> & ICustomerGroupDocument & {
    _id: mongoose.Types.ObjectId;
} & {
    __v: number;
}, any>;
//# sourceMappingURL=CustomerGroup.d.ts.map