import type { RendererEnv } from 'jamis-core';
import type { SchemaCopyable } from '../types';
export * from './Copyable.types';
export * from './PopOver.types';
export * from './QuickEdit.types';
export interface UseCopyableProps {
    copy: RendererEnv['copy'];
    copyable?: SchemaCopyable;
    /**
     * 解析复制内容
     */
    resolveContent: (content?: string) => string;
}
