interface ShouldEnterParams {
    experiment: string;
    userId: string;
    attributes?: Record<string, any>;
}
export declare function routecheck({ experiment, userId, attributes, }: ShouldEnterParams): Promise<{
    allow: boolean | null;
}>;
export {};
