import type { RendererProps } from 'jamis-core';
import type { WithPrefixAffixHook } from './types';
/**
 * 支持在目标元素前后包装一个元素
 */
export declare const withPrefixAffixRegion: ({ render, affixRegion, prefixRegion }: WithPrefixAffixHook & Pick<RendererProps, "render">, children: JSX.Element) => JSX.Element;
