import { ReadonlyURLSearchParams } from 'next/navigation';
export type KeyParams = 'year' | 'semester' | 'month' | 'education_level' | 'grade' | 'classroom' | 'program' | 'tuition_group_type' | 'tuition_service_type' | 'tuition_campaign_type' | 'tuition_project_code' | 'export_import_module' | 'export_import_status' | 'civilized_point_group' | 'civilized_point_content' | 'civilized_point_method' | 'civilized_point_classification' | 'bus_status' | 'bus_route' | 'bus_direction' | 'bus_pickup_type' | 'bus_service_type' | 'district' | 'import_student_identity' | 'store_campaign' | 'store_method' | 'store_category' | 'user_type' | 'department' | 'tab';
export type ConfigUrlApply = {
    router?: Record<string, any>;
    searchParams: ReadonlyURLSearchParams;
    replaceUrl?: boolean;
};
