import { CategoryConfig, ZakatCategory } from "./types"; export declare const CONFIG_VALUES: { SMIG_MONTHLY: number; SMIG_ANNUAL: number; NISAB_GRAINS_KG: number; RATE_LUNAR: number; RATE_SOLAR: number; RATE_RAIN_IRRIGATION: number; RATE_ARTIFICIAL_IRRIGATION: number; }; export declare const OPTION_LABELS: Record; export declare const GRAINS_CONFIG: CategoryConfig; export declare const LIVESTOCK_CONFIG: CategoryConfig; export declare const CASH_CONFIG: CategoryConfig; export declare const COMMERCE_CONFIG: CategoryConfig; export declare const SERVICES_CONFIG: CategoryConfig; export declare const AGRICULTURE_CONFIG: CategoryConfig; export declare const DEBTS_CONFIG: CategoryConfig; export declare const CATEGORY_CONFIGS: Record; export declare function getCategoryConfig(category: ZakatCategory): CategoryConfig; export declare function getAvailableCategories(): Array<{ value: ZakatCategory; label: string; }>;