import type { Plugin } from 'rollup'; export interface ShebangPluginOptions { preserve?: boolean; } export declare function shebangPlugin(options?: ShebangPluginOptions): Plugin; export declare function makeExecutable(filePath: string): Promise; export declare function getShebang(code: string, append?: string): string;