import { CustomerScope, IdentifyFn } from '../types.js';
import { H as HandleBetterAuthRouteFn } from '../createAutumnEndpoint-Clm1sxhQ.js';
import '@better-auth/core/api';

/** Options for creating a better-auth route handler */
type CreateHandleBetterAuthRouteOptions = {
    secretKey?: string;
    baseURL?: string;
    customerScope: CustomerScope;
    identify?: IdentifyFn;
};
/** Creates a route handler function for better-auth endpoints */
declare const createHandleBetterAuthRoute: ({ secretKey, baseURL, customerScope, identify, }: CreateHandleBetterAuthRouteOptions) => HandleBetterAuthRouteFn;

export { type CreateHandleBetterAuthRouteOptions, createHandleBetterAuthRoute };
