declare class ICoreDocSeriesAssignment {
    _id?: string;
    cdsa_doc_type_id?: string;
    cdsa_doc_type_code?: string;
    cdsa_entity_id?: string;
    cdsa_academic_year_id?: string | null;
    cdsa_academic_year_code?: string | null;
    cdsa_financial_year_id?: string | null;
    cdsa_financial_year_code?: string | null;
    cdsa_series_id?: string;
    cdsa_series_code?: string;
    cdsa_is_primary?: boolean;
    cdsa_is_selectable?: boolean;
    cdsa_is_default?: boolean;
    cdsa_display_label?: string;
    cdsa_sort_order?: number;
    cdsa_is_active?: boolean;
    /** Roles allowed to use this assignment; empty = no restriction (all roles may use it) */
    cdsa_allowed_role_ids?: string[];
    cdsa_branch_id?: string | null;
    cdsa_effective_from?: Date;
    cdsa_effective_to?: Date | null;
    cdsa_created_by?: string;
    cdsa_created_at?: Date;
    cdsa_updated_by?: string;
    cdsa_updated_at?: Date;
    row_sync_enabled?: boolean;
}
export { ICoreDocSeriesAssignment };
