import type { UnchainedCore } from '@unchainedshop/core';
import type { RolesInterface } from '@unchainedshop/roles';
export declare function bulkImportHandler(request: Request, context: UnchainedCore & {
    params: Record<string, string>;
    rawRequest?: any;
    roles?: RolesInterface;
    userId?: string;
    user?: any;
}): Promise<Response>;
