import type { ExactLocaleConfig } from '@vuepress/helper/shared';
export interface CopyCodeLocaleData {
    /**
     * Copy text
     *
     * 复制文字
     */
    copy: string;
    /**
     * Copied text
     *
     * 已复制文字
     */
    copied: string;
}
export type CopyCodeLocaleConfig = ExactLocaleConfig<CopyCodeLocaleData>;
