/** * Admission Constants * * Organization: * - Page Configuration * - API Routes * - Table Configuration * - Status Options */ import { ADMISSION_STATUS, GENDER } from "../../type"; export declare const pageLimit: number; export declare const ADMISSION_STATUS_OPTIONS: { label: string; value: ADMISSION_STATUS; }[]; export declare const GENDER_OPTIONS: { label: string; value: GENDER; }[];