import { Model } from 'sequelize-typescript';
export declare class CustomerRegisteredSystemModel extends Model {
    SystemCode: string;
    SystemName: string;
    IsActiveYN: string;
    WantsSyncYN: string;
    WebhookURL: string;
    CreatedAt: Date;
    UpdatedAt: Date;
}
