import { CalculationParameters } from "../prayers/calculator";
import { Madhab } from "../madhab";
/**
 * Creates a new custom calculation parameters object
 * @param fajrAngle The angle of the sun below the horizon for Fajr
 * @param ishaAngle The angle of the sun below the horizon for Isha
 * @param madhab The madhab to use for Asr calculation
 * @param adjustments Custom time adjustments in minutes
 * @returns The custom calculation parameters
 */
export declare function createCustomParameters(fajrAngle: number, ishaAngle: number, madhab?: Madhab, adjustments?: {
    [key: string]: number;
}): CalculationParameters;
