import { b as Customer } from '../cusTypes-COIU0NG3.js';
import { E as Entity } from '../entTypes-Ck3_WfOz.js';
import 'zod';

interface AllowedParams {
    featureId?: string;
    productId?: string;
    requiredBalance?: number;
}
declare const handleAllowed: ({ customer, params, }: {
    customer: Customer | Entity | null;
    params: AllowedParams;
}) => boolean;

export { type AllowedParams, handleAllowed };
