import type { Plugin } from 'rollup'; export interface CopyFilesOptions { distDir: string; files: string[]; cwd?: string; } export declare const copyToDist: (options: CopyFilesOptions) => Plugin;