export interface TarParams { input: string; output?: string; } export declare function tar({ input, output }: TarParams): Promise;