declare class Issue {
    __classname__: string;
    Id: string | null;
    NameId: string | null;
    OverrulePublicationId: boolean | null;
    constructor(Id?: string | null, NameId?: string | null, OverrulePublicationId?: boolean | null);
}

export { Issue };
